import { createContext } from 'react' import { ContextProps } from '../types' export const DeferUntilInteractionContext = createContext({ afterInteraction: () => undefined, hasInteracted: false, })