forked from crowetic/commerce
13 lines
223 B
TypeScript
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
|