fix: Admin

Deskripsi:
- Penambahan field nama rekening di db bank
- Optimalisasi event
## No Issue
This commit is contained in:
2024-09-03 10:10:31 +08:00
parent 8a018462c7
commit 74108c3096
117 changed files with 2976 additions and 1144 deletions

View File

@@ -0,0 +1,29 @@
"use client";
import { Group, Title, TextInput } from "@mantine/core";
import { IconSearch } from "@tabler/icons-react";
import React from "react";
export function ComponentAdminGlobal_TitlePage({
name,
color,
component,
}: {
name: string;
color?: string;
component?: React.ReactNode;
}) {
return (
<>
<Group
position="apart"
bg={color ? color : "gray.4"}
p={"xs"}
style={{ borderRadius: "6px" }}
>
<Title order={4}>{name}</Title>
{component ? component : ""}
</Group>
</>
);
}