Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

layout.tsx 235B

123456789
  1. import type React from 'react'
  2. import { notFound } from 'next/navigation'
  3. export default async function Layout({ children }: React.PropsWithChildren) {
  4. if (process.env.NODE_ENV !== 'development')
  5. notFound()
  6. return children
  7. }