mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-24 01:02:31 +01:00
21 lines
272 B
JavaScript
21 lines
272 B
JavaScript
/** @jsx jsx */
|
|
|
|
import { Editor } from 'slate'
|
|
import { jsx } from '../..'
|
|
|
|
export const run = editor => {
|
|
Editor.delete(editor)
|
|
}
|
|
|
|
export const input = (
|
|
<editor>
|
|
<block>
|
|
wo
|
|
<cursor />
|
|
rd
|
|
</block>
|
|
</editor>
|
|
)
|
|
|
|
export const output = input
|