storybook/docs/snippets/react/component-story-with-query.js.mdx
jonniebigodes d8180f0ec7 component-story-with-query was adjusted.
Now is using a template
2020-08-11 03:57:14 +01:00

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
},
},
},
],
},
};
```