Javascript – Pass props in NextJS on server side (App routing)
I want share any data for each request, so I create object with these data in rootLayout export interface IProps { children: React.ReactNode; data: any; } export default function RootLayout(props: IProps) { const {children} = props; props.data = {item: "hello"}…