next.js/test/e2e/app-dir/static-siblings/app/dashboard/layout.tsx
layout.tsx17 lines265 B
import { ReactNode } from 'react'

export default function DashboardLayout({
  children,
  panel,
}: {
  children: ReactNode
  panel: ReactNode
}) {
  return (
    <div>
      <div id="children">{children}</div>
      <div id="panel">{panel}</div>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN