import { PropsWithChildren } from 'react'; import { QueryLibraryContext } from './QueryLibraryContext'; type Props = { queryLibraryAvailable?: boolean; }; export function QueryLibraryContextProviderMock(props: PropsWithChildren) { return ( {props.children} ); }