Adding Feedback Member on Members Module

This commit is contained in:
bagusajisaputroo
2025-04-21 00:20:50 +07:00
parent 6603627165
commit 444102b166
5 changed files with 268 additions and 5 deletions

View File

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