Using Bootstrap as our container

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.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.129.247.196