add table page for postoadms by municipioId

This commit is contained in:
Wikzyy
2025-02-28 14:51:03 +07:00
parent d859fb5653
commit 126a7b2ba6
4 changed files with 264 additions and 5 deletions

View File

@ -0,0 +1,12 @@
import { useContext } from 'react';
import { ManagePostoAdmsContext } from './ManagePostoAdmsContext';
const useManagePostoAdmsContext = () => {
const context = useContext(ManagePostoAdmsContext);
if (!context) throw new Error('useManagePostoAdmsContext must be used within AuthProvider');
return context;
};
export { useManagePostoAdmsContext };