/
austin_s
/
react-interview-components
Обзор
Документация
Войти
/
austin_s
/
react-interview-components
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/Install.mdx
26 строк
533 B
spanic
upgrades to Storybook 7.4, fixes standalone docs
30 авг 2023, 01:48
30 авг 2023, 01:48
a9fb6de
Код
Авторство
О чём код?
import {Meta} from '@storybook/blocks'; <Meta title="Docs/Install" /> # Install 1. `npx` command installs most recent stable version of CRA from npm. `--template` parameter points to this template, note that `cra-template-` prefix is omitted. ```shell script npx create-react-app %PROJECT_NAME% --template npm-library ``` Or ```shell script yarn create react-app %PROJECT_NAME% --template npm-library ``` 2. Start project. ```shell script cd %PROJECT_NAME% yarn start ``` 3. Commit changes.