mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-03-13 02:48:56 +01:00
27 lines
552 B
React
27 lines
552 B
React
|
import React from 'react'
|
||
|
import { Link } from 'react-router'
|
||
|
import { link } from 'gatsby-helpers'
|
||
|
import { config } from 'config'
|
||
|
|
||
|
import '../static/css/reset.css'
|
||
|
import '../static/css/typography.css'
|
||
|
|
||
|
class Template extends React.Component {
|
||
|
render() {
|
||
|
const { location, children } = this.props
|
||
|
|
||
|
return (
|
||
|
<div className='wrapper'>
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Template.propTypes = {
|
||
|
children: React.PropTypes.any,
|
||
|
location: React.PropTypes.object,
|
||
|
route: React.PropTypes.object,
|
||
|
}
|
||
|
|
||
|
export default Template
|