-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
Make this app more scalable with best practices
- replace the fragment that wraps the entire app with div along with the class app and role application
- replace #root style in global.css with .app class and move it to the app.css
- create routeConfig.js file and move all imports for a route to this file, create and export an array with route objects that contain path and element
- import routeConfig in app.js and map it to create all routes dynamically
After these modifications,the App will be more scalable and maintainable and follow best practices