# Admin Event

# feat
- Tampilan riwayat
- Tambah tipe acara
- Edit tipe acara
### No issuu
This commit is contained in:
2024-02-01 17:54:15 +08:00
parent c01906c063
commit aa203c0bc2
34 changed files with 1027 additions and 153 deletions

View File

@@ -1,14 +1,14 @@
"use client";
import { Box, Title, Divider } from "@mantine/core";
import { Box, Title, Divider, Stack } from "@mantine/core";
export default function ComponentAdminGlobal_HeaderTamplate({name}: {name: string}) {
return (
<>
<Box>
<Stack spacing={"xs"}>
<Title>{name ? name : null}</Title>
<Divider/>
</Box>
</Stack>
</>
);
}