UNPKG

@prisma-cms/front-editor

Version:
10 lines (9 loc) 420 B
import React from 'react'; import EditorComponent from '../../EditorComponent'; import { SectionProps, SectionState } from './interfaces'; export * from './interfaces'; declare class Section<P extends SectionProps = SectionProps, S extends SectionState = SectionState> extends EditorComponent<P, S> { static Name: "Section"; renderPanelView(content?: React.ReactNode): React.ReactNode; } export default Section;