Untitled
Anonymous
plain_text
05/04/2023 2:22 PM
356 B
26
Indexable
const searchDoctors = async name => {
const filteredDoctors = doctorList.filter(item => {
const fullName = `${item.adi} ${item.soyadi}`;
return fullName.toLowerCase().includes(name.toLowerCase());
});
setDoctors(filteredDoctors);
};Editor is loading...