Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
);
```