import {
Box,
Card,
Layout,
Link,
List,
Page,
Text,
BlockStack,
} from "@shopify/polaris";
import { TitleBar } from "@shopify/app-bridge-react";
export default function AdditionalPage() {
return (
The app template comes with an additional page which
demonstrates how to create multiple pages within app navigation
using{" "}
App Bridge
.
To create your own page and have it show up in the app
navigation, add a page inside app/routes, and a
link to it in the <NavMenu> component found
in app/routes/app.jsx.
Resources
App nav best practices
);
}
function Code({ children }) {
return (
{children}
);
}