Dan Albert 79b471b41c Remove CSS that was messing with text alignment.
This was added by create-react-app. We're not using it any more.
2022-03-02 23:57:05 -08:00

20 lines
445 B
TypeScript

import { LatLng } from "leaflet";
import LiberationMap from "./components/liberationmap";
import useEventStream from "./hooks/useEventSteam";
import useInitialGameState from "./hooks/useInitialGameState";
function App() {
const mapCenter: LatLng = new LatLng(25.58, 54.9);
useInitialGameState();
useEventStream();
return (
<div className="App">
<LiberationMap mapCenter={mapCenter} />
</div>
);
}
export default App;