import { useState } from 'react'; import { SearchInput } from '@patternfly/react-core'; export const SearchInputWithSubmitButton: React.FunctionComponent = () => { const [value, setValue] = useState(''); return ( setValue(value)} onSearch={(_event, value) => setValue(value)} onClear={() => setValue('')} /> ); };