DefinitelyTyped/types/react-scrollbar/react-scrollbar-tests.tsx
2017-03-24 14:27:52 -07:00

12 lines
373 B
TypeScript

import ScrollArea = require('react-scrollbar');
import * as React from 'react';
let scrollArea = <ScrollArea
speed={0.8}
className="area"
contentClassName="content"
horizontal={false}
>
<div>Some long content.</div>
</ScrollArea>;