Skip to content

Instantly share code, notes, and snippets.

@davidlivingrooms
Created July 3, 2017 03:35
Show Gist options
  • Save davidlivingrooms/d84ae390185c4bc2f48ce6e7073ef873 to your computer and use it in GitHub Desktop.
Save davidlivingrooms/d84ae390185c4bc2f48ce6e7073ef873 to your computer and use it in GitHub Desktop.
jsx
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