1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-26 03:06:25 +02:00
blog/src/templates/Page.jsx
2019-01-01 19:32:49 +01:00

31 lines
797 B
JavaScript

import React from 'react'
import PropTypes from 'prop-types'
import Helmet from 'react-helmet'
import SEO from '../components/atoms/SEO'
import Layout from '../components/Layout'
import styles from './Page.module.scss'
const Page = ({ title, location, section, children, post }) => {
return (
<>
<Helmet title={title} />
<SEO slug={location.pathname} postSEO post={post} />
<Layout location={location}>
<h1 className={styles.pageTitle}>{title}</h1>
{section ? <section className={section}>{children}</section> : children}
</Layout>
</>
)
}
Page.propTypes = {
title: PropTypes.string.isRequired,
children: PropTypes.any.isRequired,
section: PropTypes.string,
location: PropTypes.object,
post: PropTypes.object
}
export default Page