Creating our project

Similar to the previous project, we'll start off by creating a new project with Create React App, which we'll call todoifier:

$ create-react-app todoifier

After the project has been created, we'll also verify that everything was set up correctly and runs by running start on the project:

$ yarn start