Files
web/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx
2024-04-12 16:25:52 +02:00

17 lines
326 B
TypeScript

type ProfileLayoutProps = React.PropsWithChildren<{
edit: React.ReactNode
verifyCode: React.ReactNode
view: React.ReactNode
}>
export default function ProfileLayout({ children, edit, verifyCode, view }: ProfileLayoutProps) {
return (
<>
{edit}
{view}
{children}
{verifyCode}
</>
)
}