UNPKG

react-obsidian

Version:

Dependency injection framework for React and React Native applications

8 lines (5 loc) 164 B
import { createContext } from 'react'; interface Context { injectionToken: string; } export const GraphContext = createContext<Context | undefined>(undefined);