title: auto

des: auto
note:auto
This commit is contained in:
2023-10-27 17:47:08 +08:00
parent 268b0987a2
commit 8709e1aa46

View File

@@ -13,44 +13,41 @@ import {
import { IconChevronRight } from "@tabler/icons-react"; import { IconChevronRight } from "@tabler/icons-react";
export default function Admin_BuktiTransferInvestasi() { export default function Admin_BuktiTransferInvestasi() {
const listUsername = [
const listUsername = [ {
{ id: 1,
id: 1 },
}, {
{ id: 2,
id: 2 },
}, {
{ id: 3,
id: 3 },
}, {
{ id: 4,
id: 4 },
}, {
{ id: 5,
id: 5 },
}, {
{ id: 6,
id: 6 },
}, ];
]
return ( return (
<> <>
{/* Box Username */} {/* Box Username */}
{listUsername.map((e) => ( {listUsername.map((e) => (
<Paper key={e.id} bg={"gray"} p={"md"} mb={"xs"}> <Paper key={e.id} bg={"gray"} p={"md"} mb={"xs"}>
<Grid align="center"> <Grid align="center">
<Grid.Col span={6}> <Grid.Col span={6}>
<Text>Username</Text> <Text>Username</Text>
</Grid.Col> </Grid.Col>
<Grid.Col span={4}> <Grid.Col span={4}>
<Badge variant="dot">Status Transfer</Badge> <Badge variant="dot">Status Transfer</Badge>
</Grid.Col> </Grid.Col>
</Grid> </Grid>
</Paper> </Paper>
))} ))}
</> </>
); );
} }