about summary refs log tree commit diff
path: root/src/platform/desktop-web/right-column.tsx
blob: 5fe65cac81293a1691a978a7350826396249a42e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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%',
  },
})