import Runtime from '../utils/runtime' import Time from '../utils/time' export default function Page({ type }) { return (
This is a {type} page.

) } export function getServerSideProps() { return { props: { type: 'SSR', }, } } export const config = { runtime: 'nodejs', }