Notification – User - app/(application)/(user)/notifications/index.tsx - screens/Notification/ScreenNotification_V1.tsx - screens/Notification/ScreenNotification_V2.tsx Notification – Admin - app/(application)/admin/notification/index.tsx - screens/Admin/Notification-Admin/ Job - screens/Job/MainViewStatus2.tsx Docs - docs/prompt-for-qwen-code.md Deleted - screens/Notification/ScreenNotification.tsx ### No Issue
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
import ScreenNotification from "@/screens/Notification/ScreenNotification_V2";
|
|
import ScreenNotification_V1 from "@/screens/Notification/ScreenNotification_V1";
|
|
|
|
export default function Notification() {
|
|
return (
|
|
<>
|
|
<ScreenNotification />
|
|
{/* <ScreenNotification_V1 /> */}
|
|
</>
|
|
);
|
|
}
|