1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-09 16:42:48 +00:00
Files
react-starter/app/Wrapper.js
2017-03-29 18:08:19 -05:00

24 lines
455 B
JavaScript

import React from 'react';
import Navbar from './components/Navbar/Navbar';
//styling
import './scss/index.scss';
export default class Wrapper extends React.Component {
render() {
return (
<div>
<Navbar/>
<div className="content">
{this.props.children}
</div>
</div>
);
}
}
Wrapper.propTypes = {
children: React.PropTypes.node,
};