next.js / test /development /app-dir /cache-components-dev-fallback-validation /app /partial /[top] /layout.tsx
| export function generateStaticParams() { | |
| return [{ top: 'prerendered' }] | |
| } | |
| export default async function Layout({ | |
| children, | |
| }: { | |
| children: React.ReactNode | |
| }) { | |
| return children | |
| } | |