-+Series of steps for cloning a public repo to your local and being able to push changes.
When you first create a new React project, which files in the src folder hold code that should be deleted?
index.js
App.js
App.css
How to include SASS in a project?
what is the package.lock file good for?
making sure that dependencies are consistent across all machines that run the application.
what developer tool helps you seee how your components are organized?
inspect components tab
Where should page components folder be placed and why?
in the pages folder because it is fundamentally different from regular components.