From 5757fadfa3870a813dfbcdd6ded37ee275e5a5eb Mon Sep 17 00:00:00 2001
From: decamel <den_spb97@mail.ru>
Date: Wed, 27 Jul 2022 18:11:56 +0300
Subject: [PATCH] Removed application entrypoint trash.

---
 src/App.tsx | 29 ++---------------------------
 1 file changed, 2 insertions(+), 27 deletions(-)

diff --git a/src/App.tsx b/src/App.tsx
index ae91156..e9d3678 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,22 +1,7 @@
 /* -------------------------------------------------------------------------- */
 /*                                  Libraries                                 */
 /* -------------------------------------------------------------------------- */
-import React, { useEffect } from "react";
-import { BrowserRouter as Router } from "react-router-dom";
-import { Provider } from "react-redux";
-/* -------------------------------------------------------------------------- */
-/*                                    Parts                                   */
-/* -------------------------------------------------------------------------- */
-import AppHotKeys from "ui/views/HotKeys";
-import AppLoader from "components/parts/Loader";
-import GlobalSearchbar from "ui/views/GlobalSearch";
-/* -------------------------------------------------------------------------- */
-/*                                    Misc                                    */
-/* -------------------------------------------------------------------------- */
-import { store } from "store/store";
-import routes from "routes";
-import RoutesRenderer from "components/RoutesRenderer";
-import NotificationsField from "ui/views/NotificationsField";
+import React from "react";
 /* -------------------------------------------------------------------------- */
 /*                         Application root component                         */
 /* -------------------------------------------------------------------------- */
@@ -26,17 +11,7 @@ import NotificationsField from "ui/views/NotificationsField";
  */
 function App() {
   return (
-    <Provider store={store} >
-      <AppHotKeys>
-        <React.Suspense fallback={<AppLoader />}>
-          <Router>
-            <RoutesRenderer routes={routes} />
-          </Router>
-          <GlobalSearchbar />
-          <NotificationsField />
-        </React.Suspense>
-      </AppHotKeys>
-    </Provider>
+    <div>Hello world!</div>
   );
 }