import style from "./Layout.module.css" import Link from "next/link" export interface LayoutProps { heading: React.ReactNode, main: React.ReactNode, sidebar: React.ReactNode, } export function Layout(props: LayoutProps) { return (

{props.heading}

{props.main}
) }