Michael Shilman

Results 773 comments of Michael Shilman

@lucas-labs you need to opt into inline rendering by configuring `.storybook/preview.js`: ```js export const parameters = { docs: { inlineStories: true } }; ```

@SushkaVlad you're correct that's the only option for now @tmeasday will any of the recent docs rearchitecture address this limitation of addon-docs custom useArgs hook for iframed stories?

Thanks for sharing @vkammerer, that's really helpful--I'll take a closer look!

Loaders are Storybook's method for handling async data: https://storybook.js.org/docs/react/writing-stories/loaders You can't use it to load parameters async, but you can use it to fetch async data async, and then use...

I don't think we'll support this use case any time soon cc @tmeasday However, as a workaround, you might be able to do something like this in your `.storybook/main.js` ```js...

Hi @Aaron-Pool the contents of `` need to be appropriately structured for Vue. It can be a function that returns an object, or just the return object itself. Here's a...

Unfortunately we're not there yet. We support JSX directly in React, but it's going to take a little work to get that level of ergonomics for the other view layers....

Yeah that's what I meant. I think the non-react view layers support stores that return objects and strings. Whereas `react` specifically supports JSX (React elements, to be more specific).

@Hishengs not in 6.0 and 6.1 is just starting now