commerce/pages/profile.tsx
2020-10-24 16:53:25 -03:00

13 lines
223 B
TypeScript

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