12 lines
181 B
TypeScript
12 lines
181 B
TypeScript
import { JSX } from "react"
|
|
|
|
import { ProfilePage } from "@pages/ProfilePage"
|
|
|
|
export default function Profile(): JSX.Element {
|
|
return (
|
|
<main>
|
|
<ProfilePage />
|
|
</main>
|
|
)
|
|
}
|