$ irongenerate projector
Now we will go into this folder and create a react app there - this will be in a folder called 'client'
$ cd projector
$ npx create-react-app client
Then we also want to remove git from within the client folder - otherwise you will get an error later if you use git in your project
# in: projector/client
$ rm -rf .git
$ git init
$ git add .
$ git commit -m 'initial commit'
Then you go to GitHub, create a new repository for your project, copy the line 'git remote add origin ...' and push to master
Now we have our basic project structure
Happy hacking 💙