just a test
Last active
October 6, 2018 11:20
-
-
Save matepaiva/e109cbb2350b5fd12c7f48601dcd4f0f to your computer and use it in GitHub Desktop.
react-themed-gist
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
import React from 'react'; | |
import { render} from 'react-dom'; | |
import ThemedGist from 'react-themed-gist'; | |
const App = () => [ | |
<ThemedGist id="a2b96ecc78311ff353ee79fce1fae36b" key="1" theme="terminal" />, | |
<ThemedGist id="a2b96ecc78311ff353ee79fce1fae36b" hideMeta key="3" theme="monokai" />, | |
]; | |
render(<App />, document.getElementById('root')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment