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

18 lines
403 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-06-07 00:48:02 +00:00
export const Default = (): JSX.Element => (
2022-01-05 17:59:59 +00:00
<QrCode
2022-01-14 16:45:05 +00:00
alt="Scan this little code!"
2022-01-05 17:59:59 +00:00
data="sgnl://linkdevice?uuid=gCkj0T2xiSUaPRhMYiF24w&pub_key=7RshtQrb3UTMowITe79uW9dgw_CLTGWenj0OT80i0HpH"
/>
2022-06-07 00:48:02 +00:00
);