Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yukioru/react-library-vite-monorepo
React Library Template
https://github.com/yukioru/react-library-vite-monorepo
esm library react storybook template typescript vite
Last synced: 16 days ago
JSON representation
React Library Template
- Host: GitHub
- URL: https://github.com/yukioru/react-library-vite-monorepo
- Owner: Yukioru
- License: mit
- Created: 2024-01-09T16:31:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-01T18:26:29.000Z (about 1 year ago)
- Last Synced: 2024-11-17T04:42:23.975Z (3 months ago)
- Topics: esm, library, react, storybook, template, typescript, vite
- Language: TypeScript
- Homepage:
- Size: 766 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Library Vite template
Charged with Storybook, CSS Modules, Husky, Lint-staged, Vite and more.
## How to ..
### ..install
1. `pnpm i`
2. `pnpm dev`
3. `pnpm test`
4. `pnpm build`### ..use
1. Import `style.css` into your project
```js
import '@uikit/button/style.css';
```2. Import and use components
```js
import { Button } from '@uikit/button';
...return (
Example
);
```