update : jabatan

Deskripsi:
- tambah jabatan
- list jabatan
- edit jabatan

No Issues
This commit is contained in:
amel
2024-07-08 12:26:50 +08:00
parent e2d9763a1d
commit e0b88b2573
11 changed files with 433 additions and 7 deletions

View File

@@ -2,10 +2,10 @@ import { Box, Drawer, Text } from '@mantine/core';
import React from 'react';
import { WARNA } from '../fun/WARNA';
export default function LayoutDrawer({ opened, onClose, title, children }: { children: React.ReactNode, opened: boolean, onClose: () => void, title: React.ReactNode }) {
export default function LayoutDrawer({ opened, onClose, title, children, size }: { children: React.ReactNode, opened: boolean, size?: string, onClose: () => void, title: React.ReactNode }) {
return (
<Box>
<Drawer opened={opened} title={<Text c={WARNA.biruTua} fw={'bold'}>{title}</Text>} onClose={onClose} position={"bottom"} size={"35%"}
<Drawer opened={opened} title={<Text c={WARNA.biruTua} fw={'bold'}>{title}</Text>} onClose={onClose} position={"bottom"} size={(size == 'lg') ? '80%' : '30%'}
styles={{
content: {
backgroundColor: "white",