Files
aso/frontend/client-portal/src/hooks/useSettings.ts
Linksehat Staging Server 70fc1579e7 update
2024-07-12 08:41:18 +07:00

9 lines
259 B
TypeScript
Executable File

import { useContext } from 'react';
import { SettingsContext } from '../contexts/SettingsContext';
// ----------------------------------------------------------------------
const useSettings = () => useContext(SettingsContext);
export default useSettings;