UNPKG

@wordpress/block-editor

Version:
18 lines (15 loc) 315 B
/** * WordPress dependencies */ import { useContext } from '@wordpress/element'; /** * Internal dependencies */ import { OnCaretVerticalPositionChange } from '../block-list'; export function useNativeProps() { return { onCaretVerticalPositionChange: useContext( OnCaretVerticalPositionChange ), }; }