add initial react app
This commit is contained in:
25
common/app/App.jsx
Normal file
25
common/app/App.jsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import React, { PropTypes } from 'react';
|
||||
|
||||
import Nav from './components/Nav';
|
||||
import Footer from './components/Footer';
|
||||
|
||||
export default class extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
static displayName = 'FreeCodeCamp'
|
||||
static propTypes = {
|
||||
children: PropTypes.node
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
<Nav />
|
||||
{ this.props.children }
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user