-
+ {view === 'mining' ? (
+
+ ) : (
+
+
{`hello i am a wallet view`}
+
+ )}
);
}
diff --git a/src/containers/main/MainView.tsx b/src/containers/main/MainView.tsx
index b673643db..9109b7008 100644
--- a/src/containers/main/MainView.tsx
+++ b/src/containers/main/MainView.tsx
@@ -2,14 +2,22 @@ import { useAppConfigStore } from '@app/store/useAppConfigStore';
import { Dashboard } from '@app/containers/main/Dashboard';
import SidebarNavigation from '@app/containers/main/SidebarNavigation/SidebarNavigation.tsx';
import { DashboardContainer } from '@app/theme/styles.ts';
+import { useUIStore } from '@app/store/useUIStore.ts';
export default function MainView() {
const visualMode = useAppConfigStore((s) => s.visual_mode);
+ const view = useUIStore((s) => s.view);
return (