Как начать проект React на Atom

npm i create-react-app -g
create-react-app myapp
cd myapp
atom .
yarn start
MadMan