DefinitelyTyped/types/react-headroom/react-headroom-tests.tsx
Hyunyoung Cho 0f18f42a4d Add types for react-headroom (#31697)
* Add: react-headroom types

* Fix: dt-headers
2018-12-31 08:50:42 -08:00

13 lines
260 B
TypeScript

import * as React from 'react';
import Headroom from 'react-headroom';
class HeadroomWrapper extends React.Component {
render() {
return (
<Headroom>
<h1>This is a header</h1>
</Headroom>
);
}
}