Greenhouse
useEffect(() => {
fetch("https://boards-api.greenhouse.io/v1/boards/coast/jobs?content=true")
.then((res) => res.json())
.then((data) => setJobs(data.jobs));
}, []);
useEffect(() => {
fetch("https://boards-api.greenhouse.io/v1/boards/coast/jobs?content=true")
.then((res) => res.json())
.then((data) => setJobs(data.jobs));
}, []);