butuh install packagee react number format

This commit is contained in:
bagusajisaputroo
2025-03-24 09:55:20 +07:00
parent 03e670ef09
commit 5422ce9381
13 changed files with 2733 additions and 0 deletions

View File

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