diff --git a/examples/rich-text/index.js b/examples/rich-text/index.js index cf4f4a165..85ac82864 100644 --- a/examples/rich-text/index.js +++ b/examples/rich-text/index.js @@ -12,10 +12,10 @@ import keycode from 'keycode' const NODES = { 'block-quote': props =>
{props.children}
, - 'bulleted-list': props => , + 'bulleted-list': props => , 'heading-one': props =>

{props.children}

, 'heading-two': props =>

{props.children}

, - 'list-item': props =>
  • {props.chidlren}
  • , + 'list-item': props =>
  • {props.children}
  • , 'numbered-list': props =>
      {props.children}
    }