Skip to content

Yukioru/react-library-vite-monorepo

Repository files navigation

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
import '@uikit/button/style.css';
  1. Import and use components
import { Button } from '@uikit/button';
...

return (
  <Button>Example</Button>
);