import React, { useState } from "react"; import "../css/Hero.css"; import "animate.css"; const Hero = ({ initialAnimation, onMouseEnter, onAnimationEnd }) => { const [animation, setAnimation] = useState(initialAnimation); return (
onMouseEnter(setAnimation)} onAnimationEnd={() => onAnimationEnd(setAnimation)} >

Hi, I'm Yousif.
{" "} I'm a Full-Stack Developer from Germany.

); }; export default Hero;