mdwiltfong / capstone_one

Teacher-Pay: Making invoicing and quotes easier for teachers.
https://teacher-pay.herokuapp.com/
MIT License
0 stars 0 forks source link

convert client to react, react-router #118

Open EthanBonsignori opened 2 years ago

EthanBonsignori commented 2 years ago

General steps are as follows with some provided details to guide you in the right direction.

Add React and React-Router-Dom

Requirements

at this point a good step would be recreating all of your pages in the templates/ folder with react. Don't worry about any api integration or special functionality. Aim should be to be able to click the various buttons on any page to switch between the different pages. This will be like recreating your app but instead of html it'll be jsx and use react-router-dom to navigate around. You should also import your css into react (hint: create-react-app comes with an easy solution out of the box, check App.js)

Start with these steps. It'll essentially be standalone from your current application and won't interface with your flask server yet. This should be challenging enough as is, please ask questions if you get stuck and I can help!