import { Component, createEffect, createSignal } from "solid-js"; import { removeZeroWidthAndTrim } from "../utils/utils.ts"; export const SearchBox: Component<{ value?: string | null; onInput: (value: string) => void }> = (props) => { const [value, setValue] = createSignal(""); createEffect(() => { if (props.value) { setValue(props.value); } }); return (
); };