UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

7 lines (6 loc) 253 B
import { RichText as RichTextType } from '../types'; interface RichTextProps { richText: RichTextType[] | undefined | null; } export declare const RichText: ({ richText }: RichTextProps) => import("react/jsx-runtime").JSX.Element | null; export {};