1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-02-24 01:22:26 +01:00

Update App.jsx

This commit is contained in:
Mike Kamermans 2017-02-08 08:52:51 -08:00 committed by GitHub
parent 4ffba85469
commit 6c4510030a

View File

@ -1,4 +1,11 @@
var React = require("react");
var ReactDOM = require("react-dom");
var FullArticle = require("./FullArticle.jsx");
ReactDOM.render(<FullArticle/>, document.getElementById("article"));
var localized = (
<div>
<FullArticle/>
<script src="https://localize-bezierinfo.herokuapp.com/static/js/jquery-1.11.1.min.js"/>
<script src="https://localize-bezierinfo.herokuapp.com/pontoon.js"/>
</div>
);
ReactDOM.render(localized, document.getElementById("article"));