mirror of
https://github.com/vercel/commerce.git
synced 2025-03-15 23:12:32 +00:00
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
|