feat
Desc: - Fitur admin: 1. Main page investasi 2. Konfirmasi investasi 3. Detail Konfirmasi investasi #No isssu
This commit is contained in:
56
src/app_modules/admin/investasi/bukti_transfer/view.tsx
Normal file
56
src/app_modules/admin/investasi/bukti_transfer/view.tsx
Normal file
@@ -0,0 +1,56 @@
|
||||
"use client";
|
||||
|
||||
import {
|
||||
Avatar,
|
||||
Badge,
|
||||
Grid,
|
||||
Group,
|
||||
Paper,
|
||||
Text,
|
||||
ThemeIcon,
|
||||
Title,
|
||||
} from "@mantine/core";
|
||||
import { IconChevronRight } from "@tabler/icons-react";
|
||||
|
||||
export default function Admin_BuktiTransferInvestasi() {
|
||||
|
||||
const listUsername = [
|
||||
{
|
||||
id: 1
|
||||
},
|
||||
{
|
||||
id: 2
|
||||
},
|
||||
{
|
||||
id: 3
|
||||
},
|
||||
{
|
||||
id: 4
|
||||
},
|
||||
{
|
||||
id: 5
|
||||
},
|
||||
{
|
||||
id: 6
|
||||
},
|
||||
|
||||
]
|
||||
return (
|
||||
<>
|
||||
{/* Box Username */}
|
||||
{listUsername.map((e) => (
|
||||
<Paper key={e.id} bg={"gray"} p={"md"} mb={"xs"}>
|
||||
<Grid align="center">
|
||||
<Grid.Col span={6}>
|
||||
<Text>Username</Text>
|
||||
</Grid.Col>
|
||||
<Grid.Col span={4}>
|
||||
<Badge variant="dot">Status Transfer</Badge>
|
||||
</Grid.Col>
|
||||
</Grid>
|
||||
</Paper>
|
||||
))}
|
||||
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user