/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/e2e/node-cli-args/app/layout.tsx
14 строк
204 B
Sebastian "Sebbie" Silbermann
Allow Node.js' experimental inspector flags in `next dev` and `next build` (#90603)
27 фев 2026, 11:52
Не верифицирован
27 фев 2026, 11:52
e027b6c
Код
Авторство
О чём код?
import * as React from 'react' export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( <html> <head /> <body>{children}</body> </html> ) }