This is React package for shared component library based on Ionic and Material Design concepts!
install the package
npm i lore-uikit --save
import component
import {Button} from "lore-uikit";
then use the component
<Button
onClick={() => {
//do anything
}}
label="Toggle Theme"
/>
after cloning this repo you have to run the following commands
npm install
npm run build
npm publish
npm run storybook
npm run build-storybook
├── src
│ ├── components
| │ ├── Button
| | │ ├── Button.tsx
| | │ └── index.ts
| │ └── index.ts
│ ├── Shared
| │ ├── enums
| │ ├── styles
│ └── index.ts
├── package.json
└── package-lock.json