This is a simple template built from the default create react app that uses a new src
folder with a basic container and styling for doing vschool assignments.
npx create-react-app <your-app-name> --template vschool-assignments
src
├── App.css
├── App.js
├── components
│ ├── Footer.js
│ ├── Header.js
│ └── Main.js
├── index.css
└── index.js
For more information, please refer to:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create React App.