#### Description I'd like to be able to use custom components only for certain cases such as: - Images/Videos that are from a certain source - Certain Embed types more examples could be found. The idea ```javascript const components = useMemo(() => { Embed: (props) => { if (props.smt === 'criteria') { return <div>something</div> } return <defaultComponents.Embed {...props} /> } }, [...]); ``` #### Notion Test Page ID N/A