import Grid from "@/components/Grid/GridCustom"; import TextCustom from "@/components/Text/TextCustom"; export default function AdminTitleTable({ title1, title2, title3, }: { title1: string; title2: string; title3: string; }) { return ( <> {title1} {title2} {title3} ); }