import clsx from 'clsx' import type { FC, ReactNode } from 'react' import styles from './BaseLayout.module.css' export type BaseLayoutProps = { globalNav: ReactNode appBar: ReactNode children: ReactNode className?: string } export const BaseLayout: FC = ({ globalNav, appBar, children, className, }) => { return (
{globalNav}
{appBar}
{children}
) }