mapserver/static/js/stats.js

10 lines
244 B
JavaScript
Raw Normal View History

2019-12-29 16:12:30 +01:00
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));
});