File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ import keycode from 'keycode'
12
12
13
13
const NODES = {
14
14
'block-quote' : props => < blockquote { ...props . attributes } > { props . children } </ blockquote > ,
15
- 'bulleted-list' : props => < ul { ...props . attributes } > { props . chidlren } </ ul > ,
15
+ 'bulleted-list' : props => < ul { ...props . attributes } > { props . children } </ ul > ,
16
16
'heading-one' : props => < h1 { ...props . attributes } > { props . children } </ h1 > ,
17
17
'heading-two' : props => < h2 { ...props . attributes } > { props . children } </ h2 > ,
18
- 'list-item' : props => < li { ...props . attributes } > { props . chidlren } </ li > ,
18
+ 'list-item' : props => < li { ...props . attributes } > { props . children } </ li > ,
19
19
'numbered-list' : props => < ol { ...props . attributes } > { props . children } </ ol >
20
20
}
21
21
You can’t perform that action at this time.
0 commit comments