From efbcad7597e0f14c18ca408c2b8eb348b36c761a Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Wed, 7 Apr 2021 22:05:02 +0100 Subject: [PATCH] Add global styles to app and fix routing imports --- src/App.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 70362ef..b0a2f38 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,12 +1,16 @@ -import { Route, Switch } from 'react-router'; +import { Route, Switch } from 'react-router-dom'; +import GlobalStyles from './GlobalStyles'; const App = () => { return ( - - -
-
-
+ <> + + + +

TEST

+
+
+ ); };