12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import { Container, Stack, Title } from "@mantine/core";
|
|
|
|
export default function ProfilePage() {
|
|
return (
|
|
<Container size={"md"} w={"100%"}>
|
|
<Stack>
|
|
<Title>Profile</Title>
|
|
</Stack>
|
|
</Container>
|
|
);
|
|
}
|