There was an error while loading. Please reload this page.
Cookin' Up Tasty Features
Take a look at the pages/bills.tsx page:
pages/bills.tsx
export default createPage({ title: "Browse", Page: () => { return ( <Container> <h1>Browse</h1> ... </Container> ) } })
Your page content goes in Page, and will be wrapped in a layout component. The page is rendered by _app.tsx.
Page
_app.tsx