The stylesheet http://localhost:3000/assets/css/bootstrap.min.css was not loaded because its MIME type, text/html, is not text/css error in react code example
Example: stylesheet not loaded because of mime-type
put your .css file in a folder called public
in your app.js file add the following code:
app.use(express.static('public'));