Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export const getServerSideProps = async ({ locale }) => {
return {
props: {
locale,
},
}
}
export default function Static({ locale }) {
return <div id="static-locale">Locale: {locale}</div>
}