prometheus/web/ui/react-app/src/contexts/ReadyContext.tsx

10 lines
188 B
TypeScript
Raw Normal View History

import React from 'react';
const ReadyContext = React.createContext(false);
function useReady(): boolean {
return React.useContext(ReadyContext);
}
export { useReady, ReadyContext };