From a3d2db96457d87b7c9a874d699e51dd5f98750c1 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 26 Jan 2023 12:53:46 -0600 Subject: Get MVP of web app running --- src/view/shell/web/right-column.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/view/shell/web/right-column.tsx (limited to 'src/view/shell/web/right-column.tsx') 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 ( + + Right Column + + ) +} + +const styles = StyleSheet.create({ + container: { + position: 'absolute', + right: 'calc(50vw - 500px)', + width: '200px', + height: '100%', + }, +}) -- cgit 1.4.1