13 lines
299 B
TypeScript
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>
|
|
)
|
|
}
|