DefinitelyTyped/qrcode.react/qrcode.react-tests.tsx
mleko a871ef4a10 Add qrcode.react definition (#14833)
* Add qrcode.react definition

* Remove patch version

* Update to comply with contribution rules
2017-03-10 15:01:02 -08:00

13 lines
707 B
TypeScript

import * as QRCode from "qrcode.react";
import * as React from "react";
const qrcodes = [
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped"/>,
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped" size={64}/>,
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped" bgColor="#555555"/>,
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped" fgColor="#aaaaaa"/>,
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped" level="L"/>,
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped" level="H"/>,
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped" size={256} bgColor="pink" fgColor="red" level="Q"/>,
];