From 967f9fc474f2903dd2c12ef4f662ead1592ea26c Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 9 Jun 2022 21:34:43 -0500 Subject: Add desktop shell --- src/platform/desktop-web/right-column.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/platform/desktop-web/right-column.tsx (limited to 'src/platform/desktop-web/right-column.tsx') diff --git a/src/platform/desktop-web/right-column.tsx b/src/platform/desktop-web/right-column.tsx new file mode 100644 index 000000000..5fe65cac8 --- /dev/null +++ b/src/platform/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