upd: diskusi umum

- tambah diskusi umum
- tambah member pada diskusi umum

No Issues
This commit is contained in:
amel
2025-05-07 14:30:55 +08:00
parent 957812fb49
commit dee684fb88
7 changed files with 296 additions and 36 deletions

View File

@@ -1,7 +1,7 @@
import { Feather } from "@expo/vector-icons";
import { InputForm } from "./inputForm";
export default function InputSearch({ onChange, width }: { onChange?: (val: string) => void, width?: number }) {
export default function InputSearch({ onChange, width, value }: { onChange?: (val: string) => void, width?: number, value?: string }) {
return (
<InputForm
type="default"
@@ -11,6 +11,7 @@ export default function InputSearch({ onChange, width }: { onChange?: (val: stri
onChange={onChange}
width={width}
bg="white"
value={value}
/>
)
}