mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
794 B
TypeScript
14 lines
794 B
TypeScript
import QRCode = require("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"/>,
|
|
<QRCode value="https://github.com/DefinitelyTyped/DefinitelyTyped" renderAs="svg"/>,
|
|
];
|