mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
466 B
TypeScript
16 lines
466 B
TypeScript
import TetherComponent from "react-tether";
|
|
import * as React from "react";
|
|
|
|
const ReactTetherAllOptions: JSX.Element =
|
|
<TetherComponent
|
|
attachment="bottom middle"
|
|
id="id123"
|
|
className="react-tether"
|
|
onUpdate={() => {}}
|
|
onRepositioned={() => {}}
|
|
renderElementTag="div"
|
|
renderElementTo=".container"
|
|
/>;
|
|
|
|
const ReactTetherRequiredOptions: JSX.Element =
|
|
<TetherComponent attachment="bottom middle" />; |