File size: 306 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import { useQueryRules, UseQueryRulesProps } from 'react-instantsearch-hooks';
export type QueryRuleContextProps = Partial<
Pick<UseQueryRulesProps, 'trackedFilters' | 'transformRuleContexts'>
>;
export function QueryRuleContext(props: QueryRuleContextProps) {
useQueryRules(props);
return null;
}
|