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
Naming conventions and standards...............
common_components---> make different directories for different components for different pages
features---> make different directories for different state management. Use naming convention of the reducers like "userSlice.js"
hooks---> code differnet custom hooks as per reqiurement with naming convention like "useLogin.js"
pages---> make different directories for different pages within that directory assemble the page using components present in the componets folder.
utils---> Implement the helper functions