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