123456789101112131415161718192021222324 |
- /**
- * React Static Boilerplate
- * https://github.com/koistya/react-static-boilerplate
- * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
- */
- import React, { PropTypes } from 'react';
- import './Layout.scss';
- import Navigation from '../Navigation';
- function Layout({ children }) {
- return (
- <div className="Layout">
- <Navigation />
- {children}
- </div>
- );
- }
- Layout.propTypes = {
- children: PropTypes.element.isRequired,
- };
- export default Layout;
|