13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import { useLocalSearchParams } from "expo-router";
|
|
import { ScrollView } from "react-native";
|
|
import { Text } from "react-native-paper";
|
|
|
|
export default function SearchIndex() {
|
|
const { globalSearch } = useLocalSearchParams();
|
|
return (
|
|
<ScrollView>
|
|
<Text>Some search results here for: {globalSearch}</Text>
|
|
</ScrollView>
|
|
);
|
|
}
|