Files
Desktop/ts/components/QrCode.dom.stories.tsx
T
2026-03-30 11:54:59 -07:00

21 lines
559 B
TypeScript

// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import type { Meta } from '@storybook/react';
import type { PropsType } from './QrCode.dom.tsx';
import { QrCode } from './QrCode.dom.tsx';
export default {
title: 'Components/QrCode',
} satisfies Meta<PropsType>;
export function Default(): React.JSX.Element {
return (
<QrCode
alt="Scan this little code!"
data="sgnl://linkdevice?uuid=gCkj0T2xiSUaPRhMYiF24w&pub_key=7RshtQrb3UTMowITe79uW9dgw_CLTGWenj0OT80i0HpH"
/>
);
}