UNPKG

@patternfly/react-code-editor

Version:

This package provides a PatternFly wrapper for the Monaco code editor

8 lines (5 loc) 162 B
import { createContext } from 'react'; interface CodeEditorContext { code: string; } export const CodeEditorContext = createContext<CodeEditorContext>(null);