12 lines
310 B
TypeScript
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>
|
|
);
|
|
}
|