/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/with-temporal/components/Layout.tsx
28 строк
566 B
Steven
chore(examples): use default prettier for examples/templates (#60530)
12 янв 2024, 02:01
Не верифицирован
12 янв 2024, 02:01
4466ba4
Код
Авторство
О чём код?
import React, { ReactNode } from "react"; import Link from "next/link"; import Head from "next/head"; type Props = { children?: ReactNode; title?: string; }; const Layout = ({ children, title = "This is the default title" }: Props) => ( <div> <Head> <title>{title}</title> </Head> <header> <nav> <Link href="/">Home</Link> | <Link href="/about">About</Link>{" "} </nav> </header> {children} <footer> <hr /> <span>I'm here to stay (Footer)</span> </footer> </div> ); export default Layout;