Yale Rosenberg
Results
2
comments of
Yale Rosenberg
I think I figured it out! I added this to `.storybook/preview.js`: ```js import { WithApolloClient } from 'storybook-addon-apollo-client/dist/decorators'; ... export const decorators = [ WithApolloClient, ... ]; ```
@przlada Sure! Here's an abridged and modified example from a codebase I work in. Note that this is using Typescript: ```js import React from 'react'; import { Story } from...