22 lines
524 B
TypeScript
22 lines
524 B
TypeScript
"use client";
|
|
|
|
import UIGlobal_LayoutHeaderTamplate from "@/app_modules/_global/ui/ui_header_tamplate";
|
|
import UIGlobal_LayoutTamplate from "@/app_modules/_global/ui/ui_layout_tamplate";
|
|
import React from "react";
|
|
|
|
export default function LayoutJob_NonUserView({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<UIGlobal_LayoutTamplate
|
|
header={<UIGlobal_LayoutHeaderTamplate title="Job Vacancy" hideButtonLeft />}
|
|
>
|
|
{children}
|
|
</UIGlobal_LayoutTamplate>
|
|
</>
|
|
);
|
|
}
|