AppLayout.tsx 186 B

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