UNPKG

@craftjs/core

Version:

A React Framework for building extensible drag and drop page editors

12 lines (11 loc) 343 B
import React from 'react'; import { SerializedNodes } from '../interfaces'; export type FrameProps = { children?: React.ReactNode; json?: string; data?: string | SerializedNodes; }; /** * A React Component that defines the editable area */ export declare const Frame: ({ children, json, data }: FrameProps) => React.JSX.Element;