Add: - admin/forum/report-posting - admin/forum/report-comment - admin/forum/posting - admin/forum/[id] Component Fix: - screens/Admin/listPageAdmin - app/(application)/admin/_layout - Admin/TitlePage - Admin/BackButtonAntTitle - Admin/BoxTitlePage Package Install Add: - react-native-toast-message: untuk menampilkan toast ### No Issue
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import TextCustom from "@/components/Text/TextCustom";
|
|
|
|
export default function AdminTitlePage({ title }: { title: string }) {
|
|
return (
|
|
<>
|
|
<TextCustom bold size={25}>
|
|
{title}
|
|
</TextCustom>
|
|
</>
|
|
);
|
|
}
|