konnos
Dashboard
flndrn
Briven
apps
studio
components
layouts
AppLayout
AppLayout.tsx
AppLayout.tsx
5 lines ·
main
1
import { PropsWithChildren } from 'react'
2
3
export const AppLayout = ({ children }: PropsWithChildren<{}>) => {
4
return <div className="h-full min-h-0 basis-0 flex-1">{children}</div>
5
}