MCPcopy Create free account
hub / github.com/Shopify/function-examples / App

Function App

sample-apps/payment-customizations/app/root.jsx:3–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import { Links, Meta, Outlet, Scripts, ScrollRestoration } from "react-router";
2
3export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected