Spaces:
Sleeping
Sleeping
File size: 285 Bytes
dc9e27a |
1 2 3 4 5 6 7 8 9 10 |
import React, { createContext, useCallback, useContext, useMemo, useRef, useState } from 'react';
export const MindsearchContext = createContext(
{} as {
activeNode: string;
isEnd: boolean;
chatIsOver: boolean;
setActiveNode?: () => void;
},
); |