Skip to content
Advertisement

React-Bootstrap grid contents not displaying

I created a grid inside of a react-bootstrap Jumbotron, but when I export it to my app.jsx none of the grid contents are displayed (but the Jumbotron and my custom styles are)

All of my other components are working fine, so I’m not sure why this isn’t.

App.js:

JavaScript

SectionThree.jsx:

JavaScript

howItWorks.jsx:

JavaScript

Advertisement

Answer

React components should always start with uppercase letter:

JavaScript

There is a good answer on stackoverflow here covering this.

Advertisement