/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
bench/basic-app/app/layout.js
16 строк
291 B
dan
[Bench] Add client-trace attribution pass and document metrics to render-pipeline (#95828)
23 июл 2026, 10:26
Не верифицирован
23 июл 2026, 10:26
5f688d2
Код
Авторство
О чём код?
import React from 'react' import HydrationMark from './ui/hydration-mark' export default function Layout({ children }) { return ( <html> <head> <title>My App</title> </head> <body> {children} <HydrationMark /> </body> </html> ) }