Como começar o projeto React no Atom

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