UNPKG

@guestbell/react-page-plugins

Version:

Plugins we use in GuestBell for working with amazing react-page package

15 lines (14 loc) 506 B
import * as React from 'react'; import { Content } from '../../types/content/Content'; import { SlateRendererProps } from '../slateRenderer/SlateRenderer'; import { CellPlugin } from '@react-page/editor'; export interface ContentRendererProps { value: Content; lang: string; defaultLang: string; slateProps?: SlateRendererProps; reactPagePlugins?: CellPlugin[]; showInvalid?: boolean; } declare const ContentRenderer: React.FC<ContentRendererProps>; export default ContentRenderer;