July 2019
Intermediate to advanced
416 pages
10h 6m
English
We want to use Bootstrap to render the entirety of our display. Fortunately, this is a trivial task and revolves around a minor modification being made to our App component. In order to render out our display, we will wrap our content inside a container, like this:
export class App extends React.Component { public render() { return ( <Container fluid={true}> <div /> </Container> ); }}
Now, when we render our content, it will automatically be rendered inside a container that stretches to the full width of the page.
Read now
Unlock full access