Skip to content

Instantly share code, notes, and snippets.

@skahack
Created August 14, 2016 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skahack/fc42344a3b681c3c3db083793f7e7b9c to your computer and use it in GitHub Desktop.
Save skahack/fc42344a3b681c3c3db083793f7e7b9c to your computer and use it in GitHub Desktop.
const React = require('react');
const { EditorBlock } = require('draft-js');
const H3 = (props) => {
return <div>
<span className="h3" style={{color: '#eb6a7a'}}>■</span>
<div style={{display: 'inline-block'}}>
<EditorBlock {...props} value={props.value} />
</div>
</div>;
};
module.exports = H3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment