mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:01:05 +08:00
26 lines
558 B
Markdown
26 lines
558 B
Markdown
---
|
|
id: 'quick-start-guide'
|
|
title: 'Quick Start Guide'
|
|
---
|
|
|
|
React Storybook is very easy to use. You can use it with any kind of React project.
|
|
Follow these steps to get started with Storybook.
|
|
|
|
```sh
|
|
npm i -g @storybook/cli
|
|
cd my-react-app
|
|
getstorybook
|
|
```
|
|
|
|
This will configure your app for Storybook. After that, you can run your Storybook with:
|
|
|
|
```sh
|
|
npm run storybook
|
|
```
|
|
|
|
Then you can access your storybook from the browser.
|
|
|
|
* * *
|
|
|
|
To learn more about what `getstorybook` command does, have a look at our [Slow Start Guide](/basics/slow-start-guide).
|