UNPKG

gsap-rn

Version:

GSAP is a JavaScript library for building high-performance animations that work in **every** major browser. Animate CSS, SVG, canvas, React, Vue, WebGL, colors, strings, motion paths, generic objects...anything JavaScript can touch! No other library deliv

11 lines (9 loc) 282 B
import {Text, View} from 'react-native'; import {SimpleAnimation} from './components/simpleAnimation/SimpleAnimation'; export const Main = () => { return ( <View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}> <SimpleAnimation /> </View> ); };