React specific wrapper for animatable-component
npm install @proyecto26/animatable-component-react for React``tsx
import React, { Component } from 'react'
import {
AnimatableComponent,
ANIMATIONS,
EASING
} from '@proyecto26/animatable-component-react'
const App = () => {
return (
delay={300}
duration={800}
composite='add'
direction='alternate'
iterations={Infinity}
animation={ANIMATIONS.TADA}
easing={EASING.EASE_IN_OUT_BACK}
onStart={() => console.log('Starting animation')}
onFinish={() => console.log('Finished animation')}
onCancel={() => console.log('Cancelled animation')}
>
HELLO WORLD