From 4687624259f62086d69ac2909d4ab4336efb6e15 Mon Sep 17 00:00:00 2001 From: evlist Date: Wed, 14 Sep 2022 10:08:14 +0200 Subject: [PATCH] Fixing an obvious bug --- src/App.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 7dfb0a4..c1acb82 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -21,16 +21,14 @@ import '@ionic/react/css/display.css'; /* Theme variables */ import './theme/variables.css'; -import TiledMap from './components/map/tiled-map'; -import Slippy from './components/slippy/slippy'; -import Layer from './components/slippy/layer'; +import Map from './components/map/map'; setupIonicReact(); const App: React.FC = () => ( - + );