elstat/priv/frontend/src/components/Page.js

13 lines
227 B
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import './Page.css'
2018-08-08 23:43:53 +00:00
export default function Page({ children }) {
return <div className="page">{children}</div>
}
Page.propTypes = {
children: PropTypes.any,
}