@wordpress/block-editor
Version:
13 lines (12 loc) • 321 B
JavaScript
// packages/block-editor/src/components/provider/selection-context.js
import { createContext } from "@wordpress/element";
var noop = () => {
};
var SelectionContext = createContext({
getSelection: () => void 0,
onChangeSelection: noop
});
export {
SelectionContext
};
//# sourceMappingURL=selection-context.mjs.map