Open jandony opened 4 years ago
Sub Tasks:
Organize code with comments, proper indenting, and spacing
Delete unused code (functions, variables, props, etc.)
Create a single setState for the snackbar. Conversation found here: Here (ex: const [snackbar, setSnackbar] = useState({name: 'example', open: false}); )
Class component vs. Functional component -> I think we should convert App.js to a class component, since we are using State everywhere. I am open to suggestions for best practices though.
Once we are at a good stand still, I would like to go through each file and see how we can clean it up (via comments, moving functions to it's parent components, removing unused code, etc.).