import type { DataTType } from '@react-page/editor'; import type { SlatePluginDefinition } from '../types/slatePluginDefinitions'; import useCurrentNodeWithPlugin from './useCurrentNodeWithPlugin'; export default (plugin: SlatePluginDefinition) => { const nodeEntry = useCurrentNodeWithPlugin(plugin); return Boolean(nodeEntry); };