UNPKG

react-repl-plus

Version:

React component for editing React components, it is similar to vue repl

5 lines (4 loc) 150 B
import { createContext } from "react"; import { Theme } from "../../types"; const ThemeContext = createContext<Theme>(); export default ThemeContext