December 2019
Intermediate to advanced
474 pages
10h 3m
English
Showing just the movie information isn't enough. We also need to apply some basic styling to the project. Adding styling to the project is done with the Bootstrap package, which adds styling to our components based on class names. Bootstrap can be installed from npm and requires the following changes to be used:
npm install --save-dev bootstrap
import React, { Component } from 'react';import ReactDOM from 'react-dom';import List from './containers/List';+ import 'bootstrap/dist/css/bootstrap.min.css'; ...