I have passed some properties to the _app
page.
<PageWrapper>
<Component someProps={someProps} />
<GlobalCSS />
</PageWrapper>
Can these props be accessed in the getServerSideProps method on each individual Page?
export const getServerSideProps: GetServerSideProps = async context => {
const data = await fetchData(someProps); // ??
return { props: { data } };
};