mirror of
https://github.com/vercel/commerce.git
synced 2025-03-15 15:02:32 +00:00
13 lines
220 B
TypeScript
13 lines
220 B
TypeScript
import { Layout } from '@components/core'
|
|
import { Container } from '@components/ui'
|
|
|
|
export default function Orders() {
|
|
return (
|
|
<Container>
|
|
<h2>My Orders</h2>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
Orders.Layout = Layout
|