actually I'm working on reactJs project with laravel on backend I want to play sound whenever I recieve notification I tried but I didn't get a solution. this is my code :
useEffect(() => {
let statusInterval = setInterval(() => {
getData();
}, 10000)
return () => {
clearInterval(statusInterval);
}
}, [])
async function getData() {
let result = await fetch(`${API_ENDPOINT}/api/listComplain`);
result = await result.json();
setData(result)
}
I want also to know if there's another way better that setInterval to get data Thanks in advance for your help.