Skip to content

Creating app with dependencies

# Create App
$ npx create-react-app quiz.cloudtech.wiki

# Switch to project directory
$ cd quiz.cloudtech.wiki

# Install Material UI
$ npm install @material-ui/core
$ npm install @material-ui/icons
  • Add Roboto Font to public/index.html file inside <head> tag after <meta> tags.
Back to top