aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/app.js
blob: 5146cb46a2666314f28e7b5fa942f8a1f49917bf (plain)
1
2
3
4
5
6
7
$(function () {
    window.ws = new Connection("/updates");

    ReactRouter.run(routes, function (Handler) {
        React.render(<Handler/>, document.body);
    });
});