Prerequisites:
To set up the app execute the following commands.
git clone https://github.com/unllamas/react-starter-kit.git
cd ...
pnpm install
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
Builds the app for production to the dist
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
See the section about deployment for more information.
Most of the code lives in the src
folder and looks something like this:
src
├── app
│ └── index.(tsx)
│ └── provider.(tsx)
│ └── route.(tsx)
│ └── routes (pages folder)
│ └── home.(tsx)
│ └── not-found.(tsx)
├── components
│ └── ui
│ └── seo
│ └── errors
│ └── theme
├── features
│ └── navbar
│ └── hero
└── lib
└── utils.(tsx)