about summary refs log tree commit diff
path: root/src/view/shell/web/DesktopRightColumn.tsx
blob: b051e6094b199eab67341510b8e33c07bc7a3cc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import React from 'react'
import {StyleSheet, View} from 'react-native'
import {Text} from '../../com/util/text/Text'
import {LiteSuggestedFollows} from '../../com/discover/LiteSuggestedFollows'
import {s} from 'lib/styles'
import {useStores} from 'state/index'

export const DesktopRightColumn: React.FC = () => {
  const store = useStores()
  return (
    <View style={styles.container}>
      <Text type="lg-bold" style={s.mb10}>
        Suggested Follows
      </Text>
      <LiteSuggestedFollows />
    </View>
  )
}

const styles = StyleSheet.create({
  container: {
    position: 'absolute',
    right: 0,
    width: '400px',
    paddingHorizontal: 16,
    paddingRight: 32,
    paddingTop: 20,
  },
})