()
| 9 | import Head from 'next/head'; |
| 10 | |
| 11 | const HomePage = () => { |
| 12 | return ( |
| 13 | <> |
| 14 | <Head> |
| 15 | <title>Example react project in a monorepo</title> |
| 16 | <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| 17 | <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true" /> |
| 18 | <link |
| 19 | href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" |
| 20 | rel="stylesheet" |
| 21 | /> |
| 22 | <link rel="icon" type="image/x-icon" href="/favicon.ico" /> |
| 23 | </Head> |
| 24 | |
| 25 | <Layout topBar={<TopBar />} sidebar={<Sidebar />} page={<Board />} /> |
| 26 | </> |
| 27 | ); |
| 28 | }; |
| 29 | |
| 30 | export default HomePage; |
nothing calls this directly
no outgoing calls
no test coverage detected