about summary refs log tree commit diff
path: root/src/view/shell/web/right-column.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/shell/web/right-column.tsx')
-rw-r--r--src/view/shell/web/right-column.tsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/view/shell/web/right-column.tsx b/src/view/shell/web/right-column.tsx
new file mode 100644
index 000000000..5fe65cac8
--- /dev/null
+++ b/src/view/shell/web/right-column.tsx
@@ -0,0 +1,19 @@
+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%',
+  },
+})