UNPKG

@nadeshikon/plugin-nextjs

Version:
12 lines (9 loc) 199 B
export async function getServerSideProps() { return { props: { time: new Date() }, } } const Page = ({ time }) => { return <p>hello {time.toString()}</p> } export default Page