Fix: Avatar
Deskripsi: - Avatar job - Avatar collaboration - Avatar event ## No Issuue
This commit is contained in:
3
src/app_modules/job/_ui/index.ts
Normal file
3
src/app_modules/job/_ui/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import { Job_UiNotUserView } from "./ui_not_user_view_job";
|
||||
|
||||
export { Job_UiNotUserView };
|
||||
21
src/app_modules/job/_ui/ui_not_user_view_job.tsx
Normal file
21
src/app_modules/job/_ui/ui_not_user_view_job.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client";
|
||||
|
||||
import {
|
||||
UIGlobal_LayoutHeaderTamplate,
|
||||
UIGlobal_LayoutTamplate,
|
||||
} from "@/app_modules/_global/ui";
|
||||
import { Job_ViewNotUserJobVacany } from "../_view";
|
||||
|
||||
export function Job_UiNotUserView({ data }: { data: any }) {
|
||||
return (
|
||||
<>
|
||||
<UIGlobal_LayoutTamplate
|
||||
header={
|
||||
<UIGlobal_LayoutHeaderTamplate title="Job Vacancy" hideButtonLeft />
|
||||
}
|
||||
>
|
||||
<Job_ViewNotUserJobVacany data={data} />
|
||||
</UIGlobal_LayoutTamplate>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user