UNPKG

react-code-canvas

Version:

Package to run and preview React code with live editing capabilities in a browser.

9 lines (8 loc) 338 B
import { UseLiveRunnerRetrun } from './useLiveRunner'; import { Language, Theme } from './types'; export type LiveContextProps = UseLiveRunnerRetrun & { language?: Language; theme?: Theme; }; export declare const LiveContext: import("react").Context<LiveContextProps>; export declare const useLiveContext: () => LiveContextProps;