next.js/test/e2e/app-dir/detachable-panels/app/layout.tsx
layout.tsx15 lines259 B
export default function Root({ children }: { children: React.ReactNode }) {
  return (
    <html>
      <body
        style={{
          backgroundColor: 'black',
          color: 'white',
        }}
      >
        {children}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN