import { IContext, IElementState } from "../types"; export const withContextHook = (state: IElementState, context: IContext, value: any) => { state.tickState.contexts.push({ context, value }); };