4
0
forked from crowetic/commerce
commerce/pages/profile.tsx
2020-10-24 17:55:30 -03:00

13 lines
255 B
TypeScript

import { Layout } from '@components/core'
import { Container, Text } from '@components/ui'
export default function Profile() {
return (
<Container>
<Text variant="pageHeading">My Profile</Text>
</Container>
)
}
Profile.Layout = Layout