mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
373 B
TypeScript
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>;
|