blob: 2f70a43d216dec37ee0583599a34b9f54799aa8c (
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
|
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'
export const DesktopRightColumn: React.FC = () => {
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,
top: 90,
width: '400px',
paddingHorizontal: 16,
paddingRight: 32,
paddingTop: 20,
},
})
|