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/view/shell/desktop-web/right-column.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/view/shell/desktop-web/right-column.tsx (limited to 'src/view/shell/desktop-web/right-column.tsx') diff --git a/src/view/shell/desktop-web/right-column.tsx b/src/view/shell/desktop-web/right-column.tsx new file mode 100644 index 000000000..5fe65cac8 --- /dev/null +++ b/src/view/shell/desktop-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 ( + + Right Column + + ) +} + +const styles = StyleSheet.create({ + container: { + position: 'absolute', + right: 'calc(50vw - 500px)', + width: '200px', + height: '100%', + }, +}) -- cgit 1.4.1