API Job
Add: - api-client/api-job: kumpulan fetch api Fix: - UI beranda , status sudah terintergrasi dengan API - UI detail status, detail utama sudah terintergrasi dengan API - Search pada beranda sudah terintegrasi - Edit sudah terintergrasi ### No Issue
This commit is contained in:
@@ -2,7 +2,11 @@ import DUMMY_IMAGE from "@/constants/dummy-image-value";
|
||||
import { Image } from "react-native";
|
||||
import BaseBox from "../Box/BaseBox";
|
||||
|
||||
export default function LandscapeFrameUploaded() {
|
||||
export default function LandscapeFrameUploaded({
|
||||
image,
|
||||
}: {
|
||||
image?: string;
|
||||
}) {
|
||||
return (
|
||||
<BaseBox
|
||||
style={{
|
||||
@@ -11,7 +15,7 @@ export default function LandscapeFrameUploaded() {
|
||||
}}
|
||||
>
|
||||
<Image
|
||||
source={DUMMY_IMAGE.background}
|
||||
source={image ? { uri: image } : DUMMY_IMAGE.dummy_image}
|
||||
resizeMode="cover"
|
||||
style={{ width: "100%", height: "100%", borderRadius: 10 }}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user