import React, { useContext } from "react"; export const FlowContext = React.createContext({}); export function useFlowContext() { return useContext(FlowContext); }