diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 12:53:46 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 12:53:46 -0600 |
commit | a3d2db96457d87b7c9a874d699e51dd5f98750c1 (patch) | |
tree | c8eedc8ed83468f5c455903f532fe9cdd9bc9134 /src/view/shell/desktop-web/right-column.tsx | |
parent | 751dfb20fd0d316da396e3c4fc53aaaaa8041dd1 (diff) | |
download | voidsky-a3d2db96457d87b7c9a874d699e51dd5f98750c1.tar.zst |
Get MVP of web app running
Diffstat (limited to 'src/view/shell/desktop-web/right-column.tsx')
-rw-r--r-- | src/view/shell/desktop-web/right-column.tsx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/view/shell/desktop-web/right-column.tsx b/src/view/shell/desktop-web/right-column.tsx deleted file mode 100644 index 5fe65cac8..000000000 --- a/src/view/shell/desktop-web/right-column.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import {Text, View, StyleSheet} from 'react-native' - -export const DesktopRightColumn: React.FC = () => { - return ( - <View style={styles.container}> - <Text>Right Column</Text> - </View> - ) -} - -const styles = StyleSheet.create({ - container: { - position: 'absolute', - right: 'calc(50vw - 500px)', - width: '200px', - height: '100%', - }, -}) |