Merge pull request #4736 from shaminmeerankutty/patch-1

[Documentation] Changed the occurrences of `babel-core` to `@babel/core` in react quick start guide
This commit is contained in:
Filipp Riabchun 2018-11-06 18:26:20 +04:00 committed by GitHub
commit 5e4dcafba4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,11 +31,11 @@ npm i --save-dev @storybook/react
## Add react, react-dom, babel-core, and babel-loader
Make sure that you have `react`, `react-dom`, `babel-core`, and `babel-loader` in your dependencies as well because we list these as a peerDependency:
Make sure that you have `react`, `react-dom`, `@babel/core`, and `babel-loader` in your dependencies as well because we list these as a peerDependency:
```sh
npm i --save react react-dom
npm i --save-dev babel-core
npm i --save-dev @babel/core
npm i --save-dev babel-loader
```