I'm trying to use getServerSideProps nextJS function but it just doesn't work. Just return undefined for my props...
export async function GetServerSideProps(context){
var test = 3
return {
props: {
test
}
}
}
export default function Page(props){
console.log(props.test)
return (
<div>
{props.test}
</div>
)
}