export async function getServerSideProps(context) { return { props: { data } }; }
export async function getServerSideProps({ params }) { const data = await fetchData(params); return { props: { data } }; }