Add: - screens/Admin/ - admin/notification/ Component Add: - components/_ShareComponent/GridSectionView.tsx ### No Issue
21 lines
449 B
TypeScript
21 lines
449 B
TypeScript
import { BackButton, TextCustom, ViewWrapper } from "@/components";
|
|
import { Stack } from "expo-router";
|
|
|
|
export default function AdminNotification() {
|
|
return (
|
|
<>
|
|
<Stack.Screen
|
|
options={{
|
|
title: "Admin Notifikasi",
|
|
headerLeft: () => <BackButton />,
|
|
headerRight: () => <></>,
|
|
}}
|
|
/>
|
|
|
|
<ViewWrapper>
|
|
<TextCustom>Notification</TextCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|