import React from "react" import AnimationPlayer from "components/AnimationPlayer" import StepsContext from "../../context" export default (props) => { const context = React.useContext(StepsContext) React.useEffect(() => { setTimeout(() => { if (typeof context.onFinish === "function") { context.onFinish() } }, 2000) }, []) return

Your tag is ready to use!

}