const Page = ({ pid }) =>
{`Post - ${pid}`}
Page.getInitialProps = ({ query }) => { return { pid: query.pid } } export default Page