Question | Scripture |
---|---|
What is sin? | [1 John 3:4][1] |
Can one sin by doing nothing? | [James 4:17][2] |
From where does sin come? | [Mark 7:20-23][3] |
What is the result of sin? | [Romans 8:5-8][4] |
What has been done about sin? | [Romans 5:6-11][5] |
This file contains hidden or 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
clear() { | |
const {editorState} = this.state | |
const selection = editorState.getSelection() | |
const contentState = editorState.getCurrentContent() | |
const styles = editorState.getCurrentInlineStyle() | |
const removeStyles = styles.reduce((state, style) => { | |
return Modifier.removeInlineStyle(state, selection, style) }, contentState) | |
const removeBlock = Modifier.setBlockType(removeStyles, selection, 'unstyled') |