DNY Client (1 – setup)

create-react-app dny-client

cd dny-client

npm start

You’ll see the default site.

Open your project with Code and remove these files:

  • App.test.js
  • ServiceWorker.js
  • setupTests.js
  • logo.svg

Edit these files to like so:

App.js

index.js

Go to Bootstrap Material.
We want to put the CSS into our index.html

copy and paste the link int the index.html

Add className container to your App and return the site.
You’ll be able to see some CSS take effect.

App.js

React Router DOM

npm i react-router-dom