import { createContext } from 'react'; import type { ActionTypes } from '../state/types'; import type { PortalType } from '../types'; export const PortalStateContext = createContext > | null>(null); export const PortalDispatchContext = createContext | null>(null);