Skip to content

Instantly share code, notes, and snippets.

@jeswin
Last active February 9, 2019 11:00
Show Gist options
  • Save jeswin/c7df31f02344be2c84870fa5136382cf to your computer and use it in GitHub Desktop.
Save jeswin/c7df31f02344be2c84870fa5136382cf to your computer and use it in GitHub Desktop.
router-article-startup
if (document.readyState === "loading") {
// Loading hasn't finished yet
document.addEventListener("DOMContentLoaded", startup);
} else {
// `DOMContentLoaded` has already fired
startup();
}
function startup() {
ReactDOM.render(
<Home
todos={todos}
pathArr={window.location.pathname.split("/").slice(1)}
/>,
document.getElementById("container")
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment