import { Block } from '../Block' type UnsupportedType = { } export class Unsupported extends Block { toHTML(): string { const UnsupportedContext:UnsupportedType = this.content as UnsupportedType const classTags = ['notion', 'unsupported'] return `
` } }