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.
21 lines
472 B
21 lines
472 B
4 years ago
|
import React from 'react';
|
||
|
import useInteraction from '../hooks/useInteraction';
|
||
|
|
||
|
interface InteractionContextProps {
|
||
|
isTouch: boolean;
|
||
|
}
|
||
|
|
||
|
export const InteractionContext = React.createContext<InteractionContextProps>({
|
||
|
isTouch: false,
|
||
|
});
|
||
|
|
||
|
export const InteractionProvider: React.FC = ({ children }) => {
|
||
|
const isTouch = useInteraction();
|
||
|
|
||
|
return (
|
||
|
<InteractionContext.Provider value={{ isTouch }}>
|
||
|
{children}
|
||
|
</InteractionContext.Provider>
|
||
|
);
|
||
|
};
|