UNPKG

@nadeshikon/plugin-nextjs

Version:
12 lines (10 loc) 205 B
export default function SSRPage(props) { return <h1>{props.message}</h1> } export const getServerSideProps = (req) => { return { props: { message: 'Bye Cruel World', }, } }