Files
kegiatanku/src/pages/profile/Profile_page.tsx
bipproduction eb5eee6ae9 baru ni e
2025-12-11 15:52:22 +08:00

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>
);
}