import { cn } from "@imphnen-frontend-service/utils" import { Icon } from '@iconify/react' import { FC, ReactElement, ReactNode } from "react" import { Button } from "../../atoms" export type TBackofficeWrapperProps = { children: ReactNode title?: string className?: string classHeader?: string classTitle?: string } export const BackofficeWrapper: FC = ({ children, title, className, classHeader, classTitle, }): ReactElement => { return (

{title}

Rizal Syaepulloh

Super Admin

Profile
{children}
) }