1
0
forked from MTSR/mapserver
mapserver/static/js/stats.js
2019-12-29 16:12:30 +01:00

10 lines
244 B
JavaScript

import WorldStats from './components/WorldStats.js';
import wsChannel from './WebSocketChannel.js';
wsChannel.connect();
wsChannel.addListener("minetest-info", function(info){
m.render(document.getElementById("app"), WorldStats(info));
});