Update eslint to 8.27.0
This commit is contained in:
parent
c8fb43a846
commit
98ef4c627a
499 changed files with 8995 additions and 8494 deletions
|
@ -15,23 +15,27 @@ export default {
|
|||
|
||||
const i18n = setupI18n('en', enMessages);
|
||||
|
||||
export const Default = (): JSX.Element => (
|
||||
<ChangeNumberNotification
|
||||
sender={getDefaultConversation()}
|
||||
timestamp={1618894800000}
|
||||
i18n={i18n}
|
||||
/>
|
||||
);
|
||||
export function Default(): JSX.Element {
|
||||
return (
|
||||
<ChangeNumberNotification
|
||||
sender={getDefaultConversation()}
|
||||
timestamp={1618894800000}
|
||||
i18n={i18n}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export const LongName = (): JSX.Element => (
|
||||
<ChangeNumberNotification
|
||||
sender={getDefaultConversation({
|
||||
firstName: '💅😇🖋'.repeat(50),
|
||||
})}
|
||||
timestamp={1618894800000}
|
||||
i18n={i18n}
|
||||
/>
|
||||
);
|
||||
export function LongName(): JSX.Element {
|
||||
return (
|
||||
<ChangeNumberNotification
|
||||
sender={getDefaultConversation({
|
||||
firstName: '💅😇🖋'.repeat(50),
|
||||
})}
|
||||
timestamp={1618894800000}
|
||||
i18n={i18n}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
LongName.story = {
|
||||
name: 'Long name',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue