Chandan Singh

Results 4 comments of Chandan Singh

I was able to resolve this using ```autoFocus``` in the input tag.Below is the snippet. ` inputRef = ref} onChange={onSearch} id="search-bar-0" type="text" aria-labelledby="search-bar-0-label" className="form-control " placeholder="Search" value={searchText} />` Hope this...

I was able to resolve this using ```autoFocus``` in the input tag.Below is the snippet. ` inputRef = ref} onChange={onSearch} id="search-bar-0" type="text" aria-labelledby="search-bar-0-label" className="form-control " placeholder="Search" value={searchText} />` Hope this...

It's passed inside the CustomMarker.In my case CustomMarker required prefix and suffix.Something like ``` const CustomMarker = ({ currentValue, valueSuffix, valuePrefix, }: { currentValue: any; valueSuffix: string; valuePrefix:string; }) =>...