mirror of https://github.com/portainer/portainer
14 lines
318 B
TypeScript
14 lines
318 B
TypeScript
import { createContext, useContext } from 'react';
|
|
|
|
export const InputContext = createContext<boolean | null>(null);
|
|
|
|
export function useInputContext() {
|
|
const value = useContext(InputContext);
|
|
|
|
if (value === null) {
|
|
throw new Error('useContext must be used within a Context.Provider');
|
|
}
|
|
|
|
return value;
|
|
}
|