Username and username link integrity check
This commit is contained in:
parent
1be90fff3d
commit
3664063d71
26 changed files with 636 additions and 35 deletions
25
ts/components/LeftPaneBanner.stories.tsx
Normal file
25
ts/components/LeftPaneBanner.stories.tsx
Normal file
|
@ -0,0 +1,25 @@
|
|||
// Copyright 2023 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import type { Meta } from '@storybook/react';
|
||||
import { LeftPaneBanner, type PropsType } from './LeftPaneBanner';
|
||||
|
||||
export default {
|
||||
title: 'Components/LeftPaneBanner',
|
||||
component: LeftPaneBanner,
|
||||
argTypes: {
|
||||
actionText: { control: { type: 'string' } },
|
||||
children: { control: { type: 'string' } },
|
||||
},
|
||||
args: {
|
||||
actionText: 'Fix now',
|
||||
children: 'Recoverable issue detected',
|
||||
onClick: action('onClick'),
|
||||
},
|
||||
} satisfies Meta<PropsType>;
|
||||
|
||||
export function Defaults(args: PropsType): JSX.Element {
|
||||
return <LeftPaneBanner {...args} />;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue