/** @jsx jsx */ import { Editor, Transforms } from 'slate'; import { jsx } from '../../../../../../support/jsx'; export const input = ( ); export const expected = ( ); export function run(editor: Editor) { Transforms.moveNodes(editor, { at: [0, 0], to: [2, 1], }); }