add video player

This commit is contained in:
Berkeley Martinez
2015-07-04 08:16:42 -07:00
parent ef7e0c67ee
commit 080fb4d37c
8 changed files with 34 additions and 2 deletions

View File

@@ -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 (
<div>
<Nav />
{ this.props.children }
<Row>
{ this.props.children }
</Row>
<Footer />
</div>
);