| 84 | }; |
| 85 | |
| 86 | interface Block { |
| 87 | block: BlockType; |
| 88 | level: number; |
| 89 | blockMap: BlockMapType; |
| 90 | mapPageUrl: MapPageUrl; |
| 91 | mapImageUrl: MapImageUrl; |
| 92 | |
| 93 | fullPage?: boolean; |
| 94 | hideHeader?: boolean; |
| 95 | customBlockComponents?: CustomBlockComponents; |
| 96 | customDecoratorComponents?: CustomDecoratorComponents; |
| 97 | } |
| 98 | |
| 99 | export const Block: React.FC<Block> = props => { |
| 100 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected