AppLayout.tsx5 lines · main
1import { PropsWithChildren } from 'react'
2
3export const AppLayout = ({ children }: PropsWithChildren<{}>) => {
4 return <div className="h-full min-h-0 basis-0 flex-1">{children}</div>
5}