diff --git a/app/(root)/(tabs)/index.tsx b/app/(root)/(tabs)/index.tsx
index 8524d46..d712636 100644
--- a/app/(root)/(tabs)/index.tsx
+++ b/app/(root)/(tabs)/index.tsx
@@ -9,7 +9,6 @@ export default function Index() {
return (
-
@@ -21,6 +20,8 @@ export default function Index() {
+
+
);
}
diff --git a/components/Search.tsx b/components/Search.tsx
index 9d8ccd5..49d88e0 100644
--- a/components/Search.tsx
+++ b/components/Search.tsx
@@ -1,6 +1,7 @@
-import {View, Text} from 'react-native'
+import {View, Text, TextInput, SafeAreaView, Image} from 'react-native'
import React, {useState} from 'react'
import {useLocalSearchParams, usePathname} from "expo-router";
+import icons from "@/constants/icons";
const Search = () => {
const path = usePathname();
@@ -8,11 +9,20 @@ const Search = () => {
const [search, setSearch] = useState(params.query);
const handleSearch = (text: string) => {
+ // console.log(search)
setSearch(text)
}
return (
-
- Search
+
+
+
+
+
)
}