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