Enshi/enshi/src/Pages/UserProfilePage/UserProfilePage.tsx
2025-02-02 14:33:49 +03:00

12 lines
310 B
TypeScript

import { Box, Flex, Text } from "@radix-ui/themes";
export default function UserProfilePage() {
return (
<Flex direction={"column"} className="flex-grow-[8]">
<Box className="flex-grow-[1]">
<Text>This is user profile</Text>
</Box>
</Flex>
);
}