/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
compiler/apps/playground/app/layout.tsx
47 строк
1 KB
Lauren Tan
[playground] Decouple playground from compiler
27 сен 2024, 22:25
Не верифицирован
27 сен 2024, 22:25
db24098
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import '../styles/globals.css'; export default function RootLayout({ children, }: { children: React.ReactNode; }): JSX.Element { 'use no memo'; return ( <html lang="en"> <head> <title> {process.env.NODE_ENV === 'development' ? '[DEV] React Compiler Playground' : 'React Compiler Playground'} </title> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"></meta> <link rel="icon" href="/favicon.ico" /> <link rel="manifest" href="/site.webmanifest" /> <link rel="preload" href="/fonts/Source-Code-Pro-Regular.woff2" as="font" type="font/woff2" crossOrigin="anonymous" /> <link rel="preload" href="/fonts/Optimistic_Display_W_Lt.woff2" as="font" type="font/woff2" crossOrigin="anonymous" /> </head> <body className="font-sans h-screen overflow-y-hidden">{children}</body> </html> ); }