AbdulElahGwaith's picture
Upload folder using huggingface_hub
95b5a04 verified
import { use } from 'react';
import { ConfigContext } from 'contexts/ConfigContext';
// ==============================|| CONFIG - HOOKS ||============================== //
export default function useConfig() {
const context = use(ConfigContext);
if (!context) throw new Error('useSConfig must be use inside ConfigProvider');
return context;
}