mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-26 04:58:43 -06:00
I need this tho
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { Colors } from '../../../enums/colors';
|
||||
import React, { SetStateAction } from 'react';
|
||||
import React from 'react';
|
||||
import { Input as TamaguiInput} from 'tamagui';
|
||||
|
||||
interface InputProps {
|
||||
onChangeText: React.Dispatch<SetStateAction<string | undefined>>,
|
||||
onChangeText: (value: string | undefined) => void,
|
||||
placeholder: string
|
||||
value: string | undefined;
|
||||
secureTextEntry?: boolean | undefined;
|
||||
|
||||
@@ -36,7 +36,7 @@ export default function Search({
|
||||
return (
|
||||
<Input
|
||||
placeholder="The Seeker"
|
||||
onChangeText={(value) => setSearchString(value)}
|
||||
onChangeText={(value) => handleSearchStringUpdate(value)}
|
||||
value={searchString}
|
||||
/>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user