react-code-dataset / next.js /test /e2e /app-dir /app-prefetch-static /app /[region] /(default) /layout.js
| export const regions = ['SE', 'DE'] | |
| export default function Layout({ children }) { | |
| return children | |
| } | |
| export function generateStaticParams() { | |
| return regions.map((region) => ({ | |
| region, | |
| })) | |
| } | |
| export const dynamicParams = false | |