@algowrite/react-help-center
v0.0.7
Published
Help center UI component package for react
Downloads
20
Readme
@algowrite/react-help-center
A React component library for help center UI components.
Installation
npm install @algowrite/react-help-centerUsage
Import and use components
import React from 'react';
import { Comp1, Comp2 } from '@algowrite/react-help-center';
function App() {
return (
<div>
{/* Red styled component */}
<Comp1 />
{/* Blue styled component */}
<Comp2 />
</div>
);
}Available Components
Comp1
A red-styled component with Tailwind CSS classes:
- Background: red-500
- Padding: p-4
- Rounded corners: rounded-lg
- Text color: white
Comp2
A blue-styled component with Tailwind CSS classes:
- Background: blue-500
- Padding: p-4
- Rounded corners: rounded-lg
- Text color: white
Development
# Install dependencies
npm install
# Build the package
npm run buildRequirements
- React 18+
- TypeScript support included
