forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1import {
2 type NativeStackScreenProps,
3 type SearchTabNavigatorParams,
4} from '#/lib/routes/types'
5import {SearchScreenShell} from './Shell'
6
7export function SearchScreen(
8 props: NativeStackScreenProps<SearchTabNavigatorParams, 'Search'>,
9) {
10 const queryParam = props.route?.params?.q ?? ''
11
12 return (
13 <SearchScreenShell
14 queryParam={queryParam}
15 testID="searchScreen"
16 isExplore
17 />
18 )
19}