From c2e268a1c90efd1759fcd75173702c31380547f8 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Thu, 25 Nov 2021 23:21:19 +0000 Subject: [PATCH] update app layout to use mui v5 system --- nym-wallet/src/layouts/AppLayout.tsx | 30 ++++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/nym-wallet/src/layouts/AppLayout.tsx b/nym-wallet/src/layouts/AppLayout.tsx index 4c476e2319..2f6d8513f1 100644 --- a/nym-wallet/src/layouts/AppLayout.tsx +++ b/nym-wallet/src/layouts/AppLayout.tsx @@ -1,31 +1,31 @@ import React from 'react' import { Box, Divider } from '@mui/material' -import { AddressCard, BalanceCard, Nav } from '../components' +import { Nav } from '../components' import Logo from '../images/logo-background.svg' export const ApplicationLayout: React.FC = ({ children }) => { return ( -
-
- + { sx={{ bgcolor: (theme) => theme.palette.grey[100], marginTop: 6 }} /> -
+
-
-
-
+ + + { }} > {children} -
-
+ + ) }