mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:01:05 +08:00
25 lines
474 B
Plaintext
25 lines
474 B
Plaintext
```js
|
|
// my-component-with-query.stories.js
|
|
|
|
import MyComponentThatHasAQuery, { MyQuery } from '../component-that-has-a-query';
|
|
|
|
const Template = (args) => <MyComponentThatHasAQuery {...args} />;
|
|
|
|
export const LoggedOut = Template.bind({});
|
|
LoggedOut.parameters = {
|
|
apolloClient: {
|
|
mocks: [
|
|
{
|
|
request: {
|
|
query: MyQuery,
|
|
},
|
|
result: {
|
|
data: {
|
|
viewer: null,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|
|
``` |