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