Skip to content

Instantly share code, notes, and snippets.

@ryyppy
Last active January 16, 2019 11:43
Show Gist options
  • Save ryyppy/8950f64ac081c9a50c1e064190f57ca2 to your computer and use it in GitHub Desktop.
Save ryyppy/8950f64ac081c9a50c1e064190f57ca2 to your computer and use it in GitHub Desktop.
GenType variants example
import * as ReactDOM from "react-dom";
import * as React from "react";
import SidebarNavLink, {imagesIcon} from "./SidebarNavLink.gen";
const Main = () => (
<div>
<SidebarNavLink navLinkIcon={imagesIcon} />
</div>
);
ReactDOM.render(React.createElement(Main), document.getElementById("index"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment