signal-desktop/ts/components/QrCode.stories.tsx

20 lines
423 B
TypeScript
Raw Normal View History

2022-01-05 17:59:59 +00:00
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { QrCode } from './QrCode';
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/QrCode',
};
2022-01-05 17:59:59 +00:00
2022-11-18 00:45:19 +00:00
export function Default(): JSX.Element {
return (
<QrCode
alt="Scan this little code!"
data="sgnl://linkdevice?uuid=gCkj0T2xiSUaPRhMYiF24w&pub_key=7RshtQrb3UTMowITe79uW9dgw_CLTGWenj0OT80i0HpH"
/>
);
}