You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
220 B
JavaScript

import {render} from 'preact'
import PlayerMap from "./components/PlayerMap";
window.addEventListener('load', async () => {
render(<PlayerMap websocketUrl={`ws://${location.host}/ws/players`}/>, document.body);
});