mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom';
|
|
import ReactWOW from 'react-wow';
|
|
|
|
const App = () => <ReactWOW animation='fadeIn'><img src='https://unsplash.it/900/900/?random' /></ReactWOW>;
|
|
|
|
ReactDOM.render(<App/>, document.getElementById('app'));
|