zepio/app/components/qrcode.js

18 lines
253 B
JavaScript
Raw Normal View History

2018-12-05 10:37:42 -08:00
// @flow
import React from 'react';
import QR from 'qrcode.react';
type Props = {
value: string,
size?: number,
};
2018-12-15 07:10:39 -08:00
export const QRCode = ({ value, size }: Props) => (
<QR value={value} size={size} />
);
2018-12-05 10:37:42 -08:00
QRCode.defaultProps = {
size: 128,
};