17 lines
572 B
TypeScript
17 lines
572 B
TypeScript
"use client";
|
|
|
|
import { Stack } from "@mantine/core";
|
|
import AdminGlobal_ComponentBackButton from "../../_admin_global/back_button";
|
|
import { AdminInvestasi_ViewBuktiTransfer } from "../_view";
|
|
import { ComponentAdminGlobal_TitlePage } from "../../_admin_global/_component";
|
|
|
|
export function AdminInvestasi_DetailBuktiTransfer({ imageId }: { imageId: string }) {
|
|
return (
|
|
<Stack>
|
|
<AdminGlobal_ComponentBackButton />
|
|
<ComponentAdminGlobal_TitlePage name="Bukti Transfer" />
|
|
<AdminInvestasi_ViewBuktiTransfer imageId={imageId} />
|
|
</Stack>
|
|
);
|
|
}
|