()
| 1 | import { Links, Meta, Outlet, Scripts, ScrollRestoration } from "react-router"; |
| 2 | |
| 3 | export default function App() { |
| 4 | return ( |
| 5 | <html lang="en"> |
| 6 | <head> |
| 7 | <meta charSet="utf-8" /> |
| 8 | <meta name="viewport" content="width=device-width,initial-scale=1" /> |
| 9 | <link rel="preconnect" href="https://cdn.shopify.com/" /> |
| 10 | <link |
| 11 | rel="stylesheet" |
| 12 | href="https://cdn.shopify.com/static/fonts/inter/v4/styles.css" |
| 13 | /> |
| 14 | <Meta /> |
| 15 | <Links /> |
| 16 | </head> |
| 17 | <body> |
| 18 | <Outlet /> |
| 19 | <ScrollRestoration /> |
| 20 | <Scripts /> |
| 21 | </body> |
| 22 | </html> |
| 23 | ); |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected