next.js/test/e2e/app-dir/interception-dynamic-segment-middleware/app/layout.tsx
layout.tsx10 lines174 B
export default function Layout(props: { children: React.ReactNode }) {
  return (
    <html>
      <body>
        <div>{props.children}</div>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN