Make sure to call the function you defined within Movie
. Something like this:
export default function Movie() {
const props = getServerSideProps();
return (
<>
<h1>{props.abc || 'not found'}</h1>
</>
)
}
And you should see '123'.