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/desktop-web/left-column.tsx | 57 ------------------------------ 1 file changed, 57 deletions(-) delete mode 100644 src/view/shell/desktop-web/left-column.tsx (limited to 'src/view/shell/desktop-web/left-column.tsx') diff --git a/src/view/shell/desktop-web/left-column.tsx b/src/view/shell/desktop-web/left-column.tsx deleted file mode 100644 index 3ce6c2eca..000000000 --- a/src/view/shell/desktop-web/left-column.tsx +++ /dev/null @@ -1,57 +0,0 @@ -import React from 'react' -import {View} from 'react-native' - -// export const NavItem: React.FC<{label: string; screen: string}> = ({ -// label, -// screen, -// }) => { -// const Link = <> // TODO -// return ( -// -// [ -// // @ts-ignore it does exist! (react-native-web) -prf -// state.hovered && styles.navItemHovered, -// ]}> -// -// {label} -// -// -// -// ) -// } - -export const DesktopLeftColumn: React.FC = () => { - // TODO - return - // return ( - // - // - // - // - // - // ) -} - -// const styles = StyleSheet.create({ -// container: { -// position: 'absolute', -// left: 'calc(50vw - 500px)', -// width: '200px', -// height: '100%', -// }, -// navItemHovered: { -// backgroundColor: 'gray', -// }, -// navItemLink: { -// padding: '1rem', -// }, -// navItemLinkSelected: { -// color: 'blue', -// }, -// }) -- cgit 1.4.1