This repository is an optional frontend starter for new DALI React projects. Installation and setup instructions are included below. You should eventually customize this README file with project-specific documentation.
.
├── ...
├── public
├── src
│ └── assets # static assets
│ └── components # reusable components across several screens
│ └── hooks # useAppDispatch, useAppSelector
│ └── redux # Redux store and setup
│ └── screens # individual pages
│ └── utils # utility folder containing helper files
├── tsconfig.json # TypeScript configuration
├── package.json # npm config
└── ...
In the project directory, you can run:
Installs project dependencies.
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
ESLint is set up in this project. To keep code clean, always remember to run yarn run lint
and fix any lint problems before merging into master.
- Eric Lu '25
Additional credit goes to Adam McQuilkin '22, Thomas Monfre '21, Tyler Vergho '23 for developing the original DALI CRUD Template Frontend, which this starter pack was evolved from.