Job – User App - app/(application)/(user)/job/(tabs)/index.tsx - app/(application)/(user)/job/(tabs)/status.tsx - app/(application)/(user)/job/(tabs)/archive.tsx - app/(application)/(user)/job/create.tsx Job – Screens - screens/Job/ScreenBeranda.tsx - screens/Job/ScreenBeranda2.tsx - screens/Job/MainViewStatus.tsx - screens/Job/MainViewStatus2.tsx - screens/Job/ScreenArchive.tsx - screens/Job/ScreenArchive2.tsx API – Job (Client) - service/api-client/api-job.ts Notification - screens/Notification/ScreenNotification.tsx Docs - QWEN.md - docs/prompt-for-qwen-code.md ### No Issue
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
/* eslint-disable react-hooks/exhaustive-deps */
|
|
import Job_ScreenArchive2 from "@/screens/Job/ScreenArchive2";
|
|
|
|
export default function JobArchive() {
|
|
return (
|
|
<>
|
|
<Job_ScreenArchive2 />
|
|
</>
|
|
);
|
|
}
|