@craftjs/core
Version:
A React Framework for building extensible drag and drop page editors
11 lines (10 loc) • 312 B
TypeScript
import * as React from 'react';
import { Options } from '../interfaces';
type EditorProps = Partial<Options> & {
children?: React.ReactNode;
};
/**
* A React Component that provides the Editor context
*/
export declare const Editor: ({ children, ...options }: EditorProps) => React.JSX.Element;
export {};