1 WEBSITE LINK = https://prakash-hackathon.netlify.app/
1 GITHUB LINK = https://github.com/prakashVishwakarma/hackathon
6 I CAN IMPROVE UI AND THE FUNCTIONALITY BUT DUE TO THE DEADLINE I COULD NOT. PLEASE GIVE MORE TIME TO COMPLETE THE TASK
7 IN CARD UI Active, Upcoming AND Past TEXT UPDATE DYNAMICALLY ALSO ADDED easy, mediam and hard TEXT IN THE CARD UI
1 WEBSITE LINK = https://my-todos-v2.vercel.app/
1 GITHUB LINK = https://github.com/prakashVishwakarma/my-todo-v2
1 EXPLANATION = ( MULTI USER LOGIN TODO ) THIS IS THE TODO APP WHERE USER CAN LOGIN SIGNUP AND USER CAN CRUD ( CREATE READ UPDATE DELETE ) THE TODO
2 WEBSITE LINK = https://my-todo-kohl.vercel.app/
2 GITHUB LINK = https://github.com/prakashVishwakarma/my-todo
2 EXPLANATION = ( SINGLE USER LOGIN TODO ) ONLY ONE USER CAN USE THIS APP, VERY SIMPLE AND BASIC APP
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
- Replace
tseslint.configs.recommended
totseslint.configs.recommendedTypeChecked
ortseslint.configs.strictTypeChecked
- Optionally add
...tseslint.configs.stylisticTypeChecked
- Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})