Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
339 Bytes
import { useContext } from 'react';
import { invariant } from '../lib/invariant';
import { IndexContext } from './IndexContext';
export function useIndexContext() {
const context = useContext(IndexContext);
invariant(
context !== null,
'The <Index> component must be used within <InstantSearch>.'
);
return context;
}