12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import { TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function AdminJob() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<TextCustom>Admin Job</TextCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|