mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
13 lines
252 B
TypeScript
13 lines
252 B
TypeScript
import { Layout } from '@components/core'
|
|
import { Container, Text } from '@components/ui'
|
|
|
|
export default function Orders() {
|
|
return (
|
|
<Container>
|
|
<Text variant="pageHeading">My Orders</Text>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
Orders.Layout = Layout
|