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

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" />;