mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* feat: add style props of react-custom-scrollbars * feat: add tests Co-authored-by: raohai.rh <raohai.rh@antgroup.com>
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
import * as React from "react"
|
|
import { render } from 'react-dom';
|
|
import Scrollbars from "react-custom-scrollbars"
|
|
|
|
render(
|
|
<Scrollbars style={{ width: 500 }}>
|
|
<div>Test</div>
|
|
</Scrollbars>,
|
|
document.getElementById("main")
|
|
)
|