Github Gist React component
npm install react-gist
Use this component to add a github gist on your website.
Preview

Get the id from the gist url https://gist.github.com/{your_name}/{id} and set it as a property of the component.
Single-file gist:
``js
var React = require('react');
var Gist = require('react-gist');
React.render(
document.body
);
`

Multi-file gist:
`js
var React = require('react');
var Gist = require('react-gist');
React.render(
document.body
);
`

- id {string} Id of the gistfile` {string} Name of a specific file in a multi-file gist
-
MIT, see LICENSE.md for details.