Created
August 14, 2016 12:10
-
-
Save skahack/fc42344a3b681c3c3db083793f7e7b9c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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