mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 21:47:35 +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'));
|