Add: components/_ShareComponent/DummyLandscapeImage. Job Add: - edit & status per id - BoxDetailSectio - ButtonStatusSection Fix: - index, status, archive: penyesuaian ui # No Issue
17 lines
469 B
TypeScript
17 lines
469 B
TypeScript
import { BaseBox, TextCustom, ViewWrapper } from "@/components";
|
|
import { jobDataDummy } from "@/screens/Job/listDataDummy";
|
|
|
|
export default function JobArchive() {
|
|
return (
|
|
<ViewWrapper hideFooter>
|
|
{jobDataDummy.map((e, i) => (
|
|
<BaseBox key={i} paddingTop={20} paddingBottom={20}>
|
|
<TextCustom align="center" bold truncate size="large">
|
|
{e.posisi}
|
|
</TextCustom>
|
|
</BaseBox>
|
|
))}
|
|
</ViewWrapper>
|
|
);
|
|
}
|