add route for all menu

This commit is contained in:
Wikzyy
2025-02-24 11:32:08 +07:00
parent d55823b7b3
commit a0efe6a7fc
16 changed files with 156 additions and 5 deletions

View File

@ -0,0 +1,14 @@
import { Dialog } from '@/components/ui/dialog';
import { useRef } from 'react';
import { useKycContext } from '../hooks';
import { useDataGrid } from '@/components';
const AddDialog = () => {
const parentRef = useRef<any | null>(null);
const { showAddDialog, handleAddDialog } = useKycContext();
const { reload } = useDataGrid();
return <Dialog></Dialog>;
};
export default AddDialog;