import Grid from "@/components/Grid/GridCustom"; import TextCustom from "@/components/Text/TextCustom"; import AdminBackButton from "./BackButton"; export default function AdminBackButtonAntTitle({ title, rightComponent, }: { title: string; rightComponent?: React.ReactNode; }) { return ( <> {title} {rightComponent} ); }