Files
hipmi/src/app_modules/admin/component/header_tamplate.tsx
Bagasbanuna02 aa203c0bc2 # Admin Event
# feat
- Tampilan riwayat
- Tambah tipe acara
- Edit tipe acara
### No issuu
2024-02-01 17:54:15 +08:00

15 lines
303 B
TypeScript

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