From 8e78fbc7ecbd81079e110a138f63a20749410462 Mon Sep 17 00:00:00 2001 From: evlist Date: Wed, 2 Nov 2022 15:29:13 +0100 Subject: [PATCH] Moving fils around --- src/App.tsx | 3 ++- src/components/{map => buttons}/GetLocation.css | 0 src/components/{map => buttons}/GetLocation.tsx | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename src/components/{map => buttons}/GetLocation.css (100%) rename src/components/{map => buttons}/GetLocation.tsx (100%) diff --git a/src/App.tsx b/src/App.tsx index 6f62f71..7fde6c1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -32,7 +32,7 @@ import { atom, useAtom } from 'jotai'; import { atomWithHash } from 'jotai/utils'; import { MapScope } from './components/map/types'; import { debounce } from 'lodash'; -import GetLocation from './components/map/GetLocation'; +import GetLocation from './components/buttons/GetLocation'; import { geoPoint } from './components/map/types'; setupIonicReact(); @@ -73,6 +73,7 @@ const App: React.FC = () => { + diff --git a/src/components/map/GetLocation.css b/src/components/buttons/GetLocation.css similarity index 100% rename from src/components/map/GetLocation.css rename to src/components/buttons/GetLocation.css diff --git a/src/components/map/GetLocation.tsx b/src/components/buttons/GetLocation.tsx similarity index 100% rename from src/components/map/GetLocation.tsx rename to src/components/buttons/GetLocation.tsx