| export const getServerSideProps = async ({ locale }) => { | |
| return { | |
| props: { | |
| locale, | |
| }, | |
| } | |
| } | |
| export default function Static({ locale }) { | |
| return <div id="static-locale">Locale: {locale}</div> | |
| } | |
| export const getServerSideProps = async ({ locale }) => { | |
| return { | |
| props: { | |
| locale, | |
| }, | |
| } | |
| } | |
| export default function Static({ locale }) { | |
| return <div id="static-locale">Locale: {locale}</div> | |
| } | |