32 lines
378 B
Markdown
32 lines
378 B
Markdown
# `components` package
|
|
|
|
**See live:** https://storybook.portaljs.org
|
|
|
|
## Dev
|
|
|
|
Use Storybook to work on components by running:
|
|
|
|
```bash
|
|
yarn storybook
|
|
```
|
|
|
|
## Build
|
|
|
|
To build this project, run:
|
|
|
|
```bash
|
|
yarn build
|
|
```
|
|
|
|
## Install
|
|
|
|
TODO: command to install the package
|
|
|
|
### Next.js
|
|
|
|
Add this line at the start of `_app.tsx`:
|
|
|
|
```ts
|
|
// pages/_app.tsx
|
|
import "dist/styles.css";
|
|
``` |