From c82fac8af1b001f7b7493b48dac3f6a1f65d12c1 Mon Sep 17 00:00:00 2001 From: Raghunandan Balachandran Date: Tue, 4 Feb 2020 13:18:45 +0100 Subject: [PATCH] move app shell to the top --- frontend/packages/app/src/App.tsx | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/frontend/packages/app/src/App.tsx b/frontend/packages/app/src/App.tsx index 7836f17c77..a2bb08ac53 100644 --- a/frontend/packages/app/src/App.tsx +++ b/frontend/packages/app/src/App.tsx @@ -36,20 +36,18 @@ const useStyles = makeStyles(theme => ({ const App: FC<{}> = () => { return ( - - - - + + + + - - - - + + - - - - + + + + ); };