/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/react-remove-properties/app/layout.tsx
16 строк
258 B
niketchandivade
update react remove properties to support app route (#68324)
31 июл 2024, 02:51
Не верифицирован
31 июл 2024, 02:51
dea722d
Код
Авторство
О чём код?
export const metadata = { title: "Next.js", description: "Generated by Next.js", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( <html lang="en"> <body>{children}</body> </html> ); }