Created
July 3, 2017 03:35
-
-
Save davidlivingrooms/d84ae390185c4bc2f48ce6e7073ef873 to your computer and use it in GitHub Desktop.
jsx
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
getGistContent = () => { | |
const options = { | |
lineNumbers: true, | |
readOnly: true, | |
mode: this.getCodeMirrorModeByFileExtension(this.props.file) | |
} | |
return ( | |
<Paper zDepth={1} > | |
<CodeMirror value={this.props.file.content} options={options} /> | |
</Paper> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment