Files
web/components/MyProfile/Profile/Edit/index.tsx
2024-04-16 09:24:31 +02:00

13 lines
299 B
TypeScript

import Container from "../Container"
import Form from "./Form"
import type { ProfileProps } from "@/types/components/myPages/myProfile/profile"
export default function EditProfile(props: ProfileProps) {
return (
<Container {...props}>
<Form user={props.user} />
</Container>
)
}