From 2d56d971e2ccd7baf50d1646576fc251bed0bead Mon Sep 17 00:00:00 2001 From: Daniel Leroux Date: Tue, 8 Oct 2024 17:09:45 +0200 Subject: [PATCH] remove empty route --- apps/react-starter/src/main.tsx | 5 ----- apps/react-starter/src/pages/analytics/index.tsx | 16 ---------------- 2 files changed, 21 deletions(-) delete mode 100644 apps/react-starter/src/pages/analytics/index.tsx diff --git a/apps/react-starter/src/main.tsx b/apps/react-starter/src/main.tsx index 8d8950c..b209bc4 100644 --- a/apps/react-starter/src/main.tsx +++ b/apps/react-starter/src/main.tsx @@ -7,7 +7,6 @@ import "./i18n"; import App from "./App.tsx"; import OverviewPage from "./pages/overview/index.tsx"; import DevicesPage from "./pages/devices/index.tsx"; -import AnalyticsPage from "./pages/analytics/index.tsx"; import "@siemens/ix/dist/siemens-ix/siemens-ix.css"; function optionalTheme() { @@ -43,10 +42,6 @@ const router = createHashRouter([ path: "/devices", element: , }, - { - path: "/analytics", - element: , - }, ], }, ]); diff --git a/apps/react-starter/src/pages/analytics/index.tsx b/apps/react-starter/src/pages/analytics/index.tsx deleted file mode 100644 index cd1f03c..0000000 --- a/apps/react-starter/src/pages/analytics/index.tsx +++ /dev/null @@ -1,16 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2024 Siemens AG - * - * SPDX-License-Identifier: MIT - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import { IxContentHeader } from "@siemens/ix-react"; - -const AnalyticsPage = () => { - return ; -}; - -export default AnalyticsPage;