DefinitelyTyped/types/react-animate-on-scroll/react-animate-on-scroll-tests.tsx
Ricardo Albuquerque Pinto 4f374d225e React animate on scroll (#25131)
* Added type definitions for react-animate-on-scroll

* Corrected itens pointed by tslint
2018-04-19 11:15:21 -07:00

13 lines
305 B
TypeScript

import * as React from "react";
import ScrollAnimation from 'react-animate-on-scroll';
export default class ReactAnimateOnScrollTest extends React.Component {
render() {
return (
<ScrollAnimation animateIn="fadeIn">
Some Text
</ScrollAnimation>
);
}
}