How can I implement style of react-select-async-paginate? Is it possible?
import React, {useState} from 'react';
import {AsyncPaginate} from "react-select-async-paginate";
import {options as apiOptions, api_url} from "../../api/api.js";
const Search = ({placeholder, onSearchChange}) => {
const [search, setSearch] = useState(null)
const loadOptions = (inputValue) => {
}
const handleOnChange = (searchData) => {
setSearch(searchData)
onSearchChange(searchData)
}
return (
<div className={"search-container"}>
<AsyncPaginate
debounceTimeout={1000}
placeholder={placeholder}
onChange={handleOnChange}
loadOptions={loadOptions}/>
</div>
);
};
export default Search;
There is no info about it in the documentation.