storybook: remove random words to fix chromatic issues

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9893
GitOrigin-RevId: d4cff0bef85d057ca896d385f2bd6d8904208293
This commit is contained in:
Matthew Goodwin 2023-07-19 04:29:24 -05:00 committed by hasura-bot
parent a9468f620d
commit 1451e0ecea

View File

@ -1,7 +1,6 @@
import { Meta, StoryObj } from '@storybook/react';
import { Tabs } from './Tabs';
import randomWords from 'random-words';
import { useState } from 'react';
import { Tabs } from './Tabs';
export default {
component: Tabs,
parameters: {
@ -10,9 +9,7 @@ export default {
} satisfies Meta<typeof Tabs>;
const Content: React.FC = ({ children }) => (
<div data-chromatic="ignore" className="whitespace-pre-line break-words p-2">
{children}
</div>
<div className="whitespace-pre-line break-words p-2">{children}</div>
);
export const Playground: StoryObj<typeof Tabs> = {
@ -21,17 +18,49 @@ export const Playground: StoryObj<typeof Tabs> = {
{
value: 'tab-1',
label: 'Tab 1',
content: <Content>{randomWords(100).join(' ')}</Content>,
content: (
<Content>
On it differed repeated wandered required in. Then girl neat why yet
knew rose spot. Moreover property we he kindness greatest be oh
striking laughter. In me he at collecting affronting principles
apartments. Has visitor law attacks pretend you calling own excited
painted. Contented attending smallness it oh ye unwilling. Turned
favour man two but lovers. Suffer should if waited common person
little oh. Improved civility graceful sex few smallest screened
settling. Likely active her warmly has.
</Content>
),
},
{
value: 'tab-2',
label: 'Tab 2',
content: <Content>{randomWords(100).join(' ')}</Content>,
content: (
<Content>
As absolute is by amounted repeated entirely ye returned. These
ready timed enjoy might sir yet one since. Years drift never if
could forty being no. On estimable dependent as suffering on my.
Rank it long have sure in room what as he. Possession travelling
sufficient yet our. Talked vanity looked in to. Gay perceive led
believed endeavor. Rapturous no of estimable oh therefore direction
up. Sons the ever not fine like eyes all sure.
</Content>
),
},
{
value: 'tab-3',
label: 'Tab 3',
content: <Content>{randomWords(100).join(' ')}</Content>,
content: (
<Content>
New had happen unable uneasy. Drawings can followed improved out
sociable not. Earnestly so do instantly pretended. See general few
civilly amiable pleased account carried. Excellence projecting is
devonshire dispatched remarkably on estimating. Side in so life
past. Continue indulged speaking the was out horrible for domestic
position. Seeing rather her you not esteem men settle genius excuse.
Deal say over you age from. Comparison new ham melancholy son
themselves.
</Content>
),
},
],
},