import React from 'react' import PropTypes from 'prop-types' import './Page.css' export default function Page ({ children }) { return (
{children}
) } Page.propTypes = { children: PropTypes.any, }