A demo library developed to understand how scalable react components are written.
yarn install
yarn add --peer react react-dom styled-components
yarn storybook
yarn add @divyaYK/react-components
# or
npm install @divyaYK/react-components
The following components are available:
- Avatar
- Badge
- Button
- Cards
- Checkbox
- Dropdown
- Input
- Navbar
- Rating
- Tabs
- Header & Text
import { Button } from "@divyaYK/react-components";
const Component = () => <Button>Click Me!</Button>;
export default Component;