Home / Function/ RootLayout() — supabase Function Reference

RootLayout() — supabase Function Reference

Architecture documentation for the RootLayout() function in layout.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/cms/src/app/(frontend)/layout.tsx lines 9–19

export default async function RootLayout(props: { children: React.ReactNode }) {
  const { children } = props

  return (
    <html lang="en">
      <body>
        <main>{children}</main>
      </body>
    </html>
  )
}

Domain

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free