Add post composer

This commit is contained in:
Paul Frazee 2022-07-22 16:06:51 -05:00
parent ce83648f9d
commit 7f04ac172e
24 changed files with 312 additions and 62 deletions

View file

@ -1,16 +0,0 @@
import React from 'react'
import {Shell} from '../shell'
import {ScrollView, Text, View} from 'react-native'
import type {RootTabsScreenProps} from '../routes/types'
export const Menu = (_props: RootTabsScreenProps<'MenuTab'>) => {
return (
<Shell>
<ScrollView contentInsetAdjustmentBehavior="automatic">
<View style={{justifyContent: 'center', alignItems: 'center'}}>
<Text style={{fontSize: 20, fontWeight: 'bold'}}>Menu</Text>
</View>
</ScrollView>
</Shell>
)
}