You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
overseerr/src/context/InteractionContext.tsx

22 lines
520 B

import useInteraction from '@app/hooks/useInteraction';
import React from 'react';
interface InteractionContextProps {
isTouch?: boolean;
children?: React.ReactNode;
}
export const InteractionContext = React.createContext<InteractionContextProps>({
isTouch: false,
});
export const InteractionProvider = ({ children }: InteractionContextProps) => {
const isTouch = useInteraction();
return (
<InteractionContext.Provider value={{ isTouch }}>
{children}
</InteractionContext.Provider>
);
};