UNPKG

@atlaskit/editor-plugin-table

Version:

Table plugin for the @atlaskit/editor

7 lines 346 B
import { pluginFactory } from '@atlaskit/editor-common/utils'; import { pluginKey } from './plugin-key'; import { reducer } from './reducer'; const dest = pluginFactory(pluginKey, reducer); export const createPluginState = dest.createPluginState; export const createCommand = dest.createCommand; export const getPluginState = dest.getPluginState;