From 9c1f4aeb2f9439775e1525e3d7c255842222302b Mon Sep 17 00:00:00 2001 From: evlist Date: Mon, 17 Oct 2022 10:37:26 +0200 Subject: [PATCH] Empty Map component. --- src/App.tsx | 9 +++++---- src/components/ExploreContainer.css | 24 ------------------------ src/components/ExploreContainer.tsx | 14 -------------- src/components/map/Map.tsx | 9 +++++++++ 4 files changed, 14 insertions(+), 42 deletions(-) delete mode 100644 src/components/ExploreContainer.css delete mode 100644 src/components/ExploreContainer.tsx create mode 100644 src/components/map/Map.tsx diff --git a/src/App.tsx b/src/App.tsx index 6033a6a..3b330ea 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -21,6 +21,7 @@ import '@ionic/react/css/display.css'; /* Theme variables */ import './theme/variables.css'; +import Map from './components/map/Map'; setupIonicReact(); @@ -28,11 +29,11 @@ const App: React.FC = () => ( - - + + - - + + diff --git a/src/components/ExploreContainer.css b/src/components/ExploreContainer.css deleted file mode 100644 index e99f514..0000000 --- a/src/components/ExploreContainer.css +++ /dev/null @@ -1,24 +0,0 @@ -.container { - text-align: center; - position: absolute; - left: 0; - right: 0; - top: 50%; - transform: translateY(-50%); -} - -.container strong { - font-size: 20px; - line-height: 26px; -} - -.container p { - font-size: 16px; - line-height: 22px; - color: #8c8c8c; - margin: 0; -} - -.container a { - text-decoration: none; -} \ No newline at end of file diff --git a/src/components/ExploreContainer.tsx b/src/components/ExploreContainer.tsx deleted file mode 100644 index 1b4b3c0..0000000 --- a/src/components/ExploreContainer.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import './ExploreContainer.css'; - -interface ContainerProps { } - -const ExploreContainer: React.FC = () => { - return ( -
- Ready to create an app? -

Start with Ionic UI Components

-
- ); -}; - -export default ExploreContainer; diff --git a/src/components/map/Map.tsx b/src/components/map/Map.tsx new file mode 100644 index 0000000..8349dcc --- /dev/null +++ b/src/components/map/Map.tsx @@ -0,0 +1,9 @@ +import react from 'react'; + +interface MapProperties {} + +const Map: react.FC = (props: MapProperties) => { + return <>; +}; + +export default Map;