Small thing, but typescript will throw an error on the following line: `const [animationData, setAnimationData] = useState();` simple solution is to add a null to the initial useState: `const [animationData, setAnimationData] = useState(null);`