mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-30 10:29:48 +02:00
Typos (#95)
This commit is contained in:
committed by
Ian Storm Taylor
parent
5aee46f8df
commit
9c020d9a04
@@ -12,10 +12,10 @@ import keycode from 'keycode'
|
|||||||
|
|
||||||
const NODES = {
|
const NODES = {
|
||||||
'block-quote': props => <blockquote {...props.attributes}>{props.children}</blockquote>,
|
'block-quote': props => <blockquote {...props.attributes}>{props.children}</blockquote>,
|
||||||
'bulleted-list': props => <ul {...props.attributes}>{props.chidlren}</ul>,
|
'bulleted-list': props => <ul {...props.attributes}>{props.children}</ul>,
|
||||||
'heading-one': props => <h1 {...props.attributes}>{props.children}</h1>,
|
'heading-one': props => <h1 {...props.attributes}>{props.children}</h1>,
|
||||||
'heading-two': props => <h2 {...props.attributes}>{props.children}</h2>,
|
'heading-two': props => <h2 {...props.attributes}>{props.children}</h2>,
|
||||||
'list-item': props => <li {...props.attributes}>{props.chidlren}</li>,
|
'list-item': props => <li {...props.attributes}>{props.children}</li>,
|
||||||
'numbered-list': props => <ol {...props.attributes}>{props.children}</ol>
|
'numbered-list': props => <ol {...props.attributes}>{props.children}</ol>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user