UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

13 lines (12 loc) 280 B
/** * Displays a QR code card, with your choice of URL and specified width. * @author Benedikt Arnarsson * @author Gabe Abrams */ import React from 'react'; type Props = { url: string; subText?: string; }; declare const QrCard: React.FC<Props>; export default QrCard;