1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-02-25 18:15:15 +01:00

14 lines
364 B
React
Raw Normal View History

2015-12-20 15:19:50 -08:00
var React = require("react");
var ReactDOM = require("react-dom");
var Article = require("./Article.jsx");
2016-01-09 23:31:52 -08:00
require("../stylesheets/style.less");
2015-12-20 15:19:50 -08:00
2016-01-05 23:13:27 -08:00
ReactDOM.render(<Article/>, document.getElementById("article"), function() {
// trigger a #hash navigation
if (window.location.hash) {
var hash = window.location.hash;
window.location.hash = hash;
}
});