diff --git a/common/app/App.jsx b/common/app/App.jsx index e0a2569c07..e97ac4d83f 100644 --- a/common/app/App.jsx +++ b/common/app/App.jsx @@ -1,4 +1,5 @@ import React, { PropTypes } from 'react'; +import { Row } from 'react-bootstrap'; import { Nav } from './components/Nav'; import { Footer } from './components/Footer'; @@ -17,7 +18,9 @@ export default class extends React.Component { return (
); diff --git a/common/app/components/Nav/Nav.jsx b/common/app/components/Nav/Nav.jsx index f35a8442ae..ddb7b2e3d3 100644 --- a/common/app/components/Nav/Nav.jsx +++ b/common/app/components/Nav/Nav.jsx @@ -8,6 +8,7 @@ const fCClogo = 'https://s3.amazonaws.com/freecodecamp/freecodecamp_logo.svg'; const navElements = navLinks.map((navItem, index) => { return ( { navItem.content } diff --git a/common/app/routes/Hikes/components/Hikes.jsx b/common/app/routes/Hikes/components/Hikes.jsx index 2b248eb320..5bb219732f 100644 --- a/common/app/routes/Hikes/components/Hikes.jsx +++ b/common/app/routes/Hikes/components/Hikes.jsx @@ -1,4 +1,6 @@ import React, { PropTypes } from 'react'; +import { Row } from 'react-bootstrap'; +import Video from 'react-video'; export default React.createClass({ displayName: 'Hikes', @@ -12,7 +14,9 @@ export default React.createClass({ } = this.props.params; return ( -

Hello { id }

+