React Monorepo Library Boilerplate
This react library boilerplate uses the following:
Creating an App
To create a new app, you may choose one of the following methods:
npx
npx create-monorepo-react-library-boilerplate my-app
npm
npm init monorepo-react-library-boilerplate my-app
Yarn
yarn create monorepo-react-library-boilerplate my-app
Basic Folder Structure
├── .storybook
├── packages
│ ├── Example
| | ├── lib
| | | ├── example.tsx
| | | ├── helpers.ts
| | | ├── index.ts
| | | ├── types.ts
| | ├── package.json
| | ├── tsconfig.json
├── LICENSE
├── package.json
├── rollup.config.json
├── lerna.json
├── README.md