react-component-library097
v1.0.0
Published
A simple React Component library built with storybook and React
Downloads
2
Maintainers
Readme
react-component-library
Description
This is a simple React Component Library containing Table, Form, Header, Modal Components.
Installation
npm install react-component-library
## Usage
import { Button } from 'react-component-library';
const MyComponent = () => {
return (
<Button primary={true} label={Primary button} />
);
};
## Components
- Table Component: A simple customizable Table Component. "src/Table"
- Modal Component: A simple open and close Modal component. "src/Modal"
- Input Component: A simple Input Component, with differnet size and label depending on the props passed. "src/Input"
- Header Component: A simple navbar Component. "src/Header"
- Form Component: A complete and Customizable form component with various form elements. "src/Form"
- Button Component: A completely customizable button component. The size, color, label can be customized. "src/Button"
## Documentation
# This are the links to some important documentations
- [StoryBook](https://storybook.js.org/docs/)
- [React](https://react.dev/learn)