/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/development/dev-indicator/app/layout.tsx
15 строк
335 B
Hendrik Liebau
[Cache Components] Disable static indicator (#84639)
08 окт 2025, 23:21
Не верифицирован
08 окт 2025, 23:21
d60d235
Код
Авторство
О чём код?
import { Suspense } from 'react' import { Nav } from '../components/nav' export default function Root({ children }: { children: React.ReactNode }) { return ( <html> <body> <Nav /> <main> <Suspense fallback={<p>Loading...</p>}>{children}</Suspense> </main> </body> </html> ) }