// Copyright 2025 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import type { Meta } from '@storybook/react'; import type { PropsType } from './BrandedQRCode'; import { BrandedQRCode } from './BrandedQRCode'; export default { title: 'Components/BrandedQRCode', } satisfies Meta; export function Default(): JSX.Element { return ( ); }