4
0
forked from crowetic/commerce
commerce/pages/orders.tsx

13 lines
252 B
TypeScript
Raw Normal View History

2020-10-24 16:53:25 -03:00
import { Layout } from '@components/core'
2020-10-24 17:55:30 -03:00
import { Container, Text } from '@components/ui'
2020-10-24 16:53:25 -03:00
export default function Orders() {
return (
<Container>
2020-10-24 17:55:30 -03:00
<Text variant="pageHeading">My Orders</Text>
2020-10-24 16:53:25 -03:00
</Container>
)
}
Orders.Layout = Layout