UNPKG

@nadeshikon/plugin-nextjs

Version:
16 lines (14 loc) 240 B
export async function getServerSideProps() { return { props: (async function () { return { text: 'promise', } })(), } } export default ({ text }) => ( <> <div>hello {text}</div> </> )