forked from crowetic/commerce
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
|