blob: d456cd196dfe9c1efcb7352f6db0f2203edcc009 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import React from 'react'
import {Shell} from '../platform/shell'
import {Text, View} from 'react-native'
import type {RootTabsScreenProps} from '../routes/types'
export const Search = (_props: RootTabsScreenProps<'Search'>) => {
return (
<Shell>
<View style={{justifyContent: 'center', alignItems: 'center'}}>
<Text style={{fontSize: 20, fontWeight: 'bold'}}>Search</Text>
</View>
</Shell>
)
}
|