From 1d00f3b9840003601175d5394af34b29222db4e3 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 18 Jul 2022 15:24:37 -0500 Subject: Add mock API and reorg code for clarity --- src/platform/desktop-web/shell.tsx | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/platform/desktop-web/shell.tsx (limited to 'src/platform/desktop-web/shell.tsx') diff --git a/src/platform/desktop-web/shell.tsx b/src/platform/desktop-web/shell.tsx deleted file mode 100644 index ef880306b..000000000 --- a/src/platform/desktop-web/shell.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react' -import {observer} from 'mobx-react-lite' -import {View, StyleSheet} from 'react-native' -import {DesktopLeftColumn} from './left-column' -import {DesktopRightColumn} from './right-column' -import {useStores} from '../../state' - -export const DesktopWebShell: React.FC = observer(({children}) => { - const store = useStores() - return ( - - {store.session.isAuthed ? ( - <> - - {children} - - - ) : ( - {children} - )} - - ) -}) - -const styles = StyleSheet.create({ - outerContainer: { - height: '100%', - }, - innerContainer: { - marginLeft: 'auto', - marginRight: 'auto', - width: '600px', - height: '100%', - }, -}) -- cgit 1.4.1