Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 967b3b49d9b0bdbe9c8fd7ea802ecf780b9e1a0c 19 lines 419 B view raw
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}