Following the https://nextjs.org/docs/basic-features/layouts#with-typescript guide and modified my Home page that I want to use the layout on, as well as _app.tsx.
The guide didn't show what Layout.tsx should look like, and it's currently erroring with:
Type '{ children: ReactElement<any, string | JSXElementConstructor>; }' is not assignable to type 'IntrinsicAttributes & ReactNode'. Type '{ children: ReactElement<any, string | JSXElementConstructor>; }' is missing the following properties from type 'ReactPortal': key, type, props ts(2322)
I'm new to TS and I'm not sure how to pass the page to Layout.
