Files
gpustack-ui/src/models/global.ts
T
2024-07-15 19:04:03 +08:00

12 lines
212 B
TypeScript

import { useState } from 'react';
const useGlobalState = () => {
const [globalState, setGlobalState] = useState<any>({});
return {
globalState,
setGlobalState
};
};
export default useGlobalState;