import * as React from 'react' import { SyncPointerBlock as SyncPointerBlockType, Block as BlockType } from 'notion-types' import { NotionBlockRenderer } from '../renderer' export const SyncPointerBlock: React.FC<{ block: BlockType level: number }> = ({ block, level }) => { if (!block) { if (process.env.NODE_ENV !== 'production') { console.warn('missing sync pointer block', block.id) } return null } const syncPointerBlock = block as SyncPointerBlockType const referencePointerId = syncPointerBlock?.format?.transclusion_reference_pointer?.id if (!referencePointerId) { return null } return ( ) }