rsnext/test/integration/mixed-ssg-serverprops-error/pages/index.js

14 lines
241 B
JavaScript
Raw Normal View History

export const getStaticProps = async () => {
return {
props: { world: 'world' },
}
}
export const getServerSideProps = async () => {
return {
props: { world: 'world' },
}
}
export default ({ world }) => <p>Hello {world}</p>