React JSX Typing Practice
Type the code below as fast and accurately as you can
Difficulty:
0
WPM
100%
Accuracy
0
Errors
60s
Timer
React JSXMedium
useEffect(() => {
const controller = new AbortController();
fetch("/api/data", { signal: controller.signal })
.then((res) => res.json())
.then(setData)
.catch(console.error);
return () => controller.abort();
}, []);
Start typing to begin