diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-07-18 15:24:37 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-07-18 15:24:37 -0500 |
commit | 1d00f3b9840003601175d5394af34b29222db4e3 (patch) | |
tree | f835e910d5f11b84ce2403e307caea080c34ab79 /src/platform/desktop-web/shell.tsx | |
parent | de87ec17d1673855fdfe2ccd125d734591969dd4 (diff) | |
download | voidsky-1d00f3b9840003601175d5394af34b29222db4e3.tar.zst |
Add mock API and reorg code for clarity
Diffstat (limited to 'src/platform/desktop-web/shell.tsx')
-rw-r--r-- | src/platform/desktop-web/shell.tsx | 35 |
1 files changed, 0 insertions, 35 deletions
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 ( - <View style={styles.outerContainer}> - {store.session.isAuthed ? ( - <> - <DesktopLeftColumn /> - <View style={styles.innerContainer}>{children}</View> - <DesktopRightColumn /> - </> - ) : ( - <View style={styles.innerContainer}>{children}</View> - )} - </View> - ) -}) - -const styles = StyleSheet.create({ - outerContainer: { - height: '100%', - }, - innerContainer: { - marginLeft: 'auto', - marginRight: 'auto', - width: '600px', - height: '100%', - }, -}) |