UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

8 lines (7 loc) 251 B
import { BaseBlock } from '../types'; interface ChildrenProps { children: BaseBlock[]; className?: string; } export declare const Children: ({ children, className }: ChildrenProps) => import("react/jsx-runtime").JSX.Element | null; export {};