WenxuC / fridge

Generate recipes based on ingredients
1 stars 0 forks source link

The urls are not working in the frontend folder #44

Closed WenxuC closed 1 year ago

WenxuC commented 1 year ago

I suspect that it has something to do with index.js and app.js

WenxuC commented 1 year ago

Fixed it by moving the root to the app.js folder, although this is improper. Try to find a way to keep it inside index.js file

WenxuC commented 1 year ago

const root = ReactDOM.createRoot(document.getElementById('root')); to const root = ReactDOM.createRoot(document.getElementById('app'));

Changing root to app solved the issue