feat : update dit calender

This commit is contained in:
lukman
2024-08-19 13:35:00 +08:00
parent 390e13544a
commit 3bb8233b3d
11 changed files with 467 additions and 20 deletions

View File

@@ -0,0 +1,16 @@
import { LayoutNavbarNew } from '@/module/_global';
import { Box } from '@mantine/core';
import React from 'react';
import UpdateListUsers from './update_list_users';
export default function UpdateUserDivisionCalender() {
return (
<Box>
<LayoutNavbarNew back="/calender/update" title="Tambah Anggota" menu />
<Box p={20}>
<UpdateListUsers />
</Box>
</Box>
);
}