This repository hosts solutions for the 30 Days of React challenges by Codedamn, built with TypeScript and MUI.
Live preview: https://codedamn-30-days-of-react.netlify.app/
- A Vite + React + TypeScript project.
- One solution per challenge, organized in the
srcdirectory. - Styling via MUI and component-level styles.
Install dependencies:
npm installStart the development server:
npm run devBuild for production:
npm run buildPreview the production build locally:
npm run preview.
├── public
├── src
│ ├── components
│ ├── routes
│ └── utils
├── index.html
├── package.json
└── vite.config.ts
- The
original-jsx-filesdirectory contains starter or reference files from the challenge prompts.