diff --git a/client-next/src/App.tsx b/client-next/src/App.tsx deleted file mode 100644 index 728cacf6461..00000000000 --- a/client-next/src/App.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { MapContainer } from './MapContainer.tsx'; -import { NavBarContainer } from './NavBarContainer.tsx'; -import { TripQueryContainer } from './TripQueryContainer.tsx'; - -export function App() { - return ( -
- - - -
- ); -} diff --git a/client-next/src/MapContainer.tsx b/client-next/src/components/MapView.tsx similarity index 96% rename from client-next/src/MapContainer.tsx rename to client-next/src/components/MapView.tsx index 75302dd30c9..b76dd2995ee 100644 --- a/client-next/src/MapContainer.tsx +++ b/client-next/src/components/MapView.tsx @@ -27,7 +27,7 @@ const initialViewState = { longitude: 10.2332855, zoom: 4, }; -export function MapContainer() { +export function MapView() { return ( diff --git a/client-next/src/screens/App.tsx b/client-next/src/screens/App.tsx new file mode 100644 index 00000000000..25f1c40b0a2 --- /dev/null +++ b/client-next/src/screens/App.tsx @@ -0,0 +1,13 @@ +import { MapView } from '../components/MapView.tsx'; +import { NavBarContainer } from '../components/NavBarContainer.tsx'; +import { SearchBarContainer } from '../components/SearchBarContainer.tsx'; + +export function App() { + return ( +
+ + + +
+ ); +}