mapserver/public/js/stats.js

10 lines
244 B
JavaScript
Raw Normal View History

2019-12-29 18:12:30 +03: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));
});