import EventEmitter from 'events'; import React, { useRef } from 'react'; import Mascot from '../../../components/ui/mascot'; export default function MascotBackgroundAnimation() { const animationEventEmitter = useRef(new EventEmitter()); return (
); }