From 651674adcd313940f9c3f7134f591bc942226ddc Mon Sep 17 00:00:00 2001 From: kazuyainoue0124 <88877589+kazuyainoue0124@users.noreply.github.com> Date: Thu, 12 Sep 2024 08:21:25 +0900 Subject: [PATCH] api.md typo --- code/addons/themes/docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/addons/themes/docs/api.md b/code/addons/themes/docs/api.md index 143178b00047..a45818ab724e 100644 --- a/code/addons/themes/docs/api.md +++ b/code/addons/themes/docs/api.md @@ -148,7 +148,7 @@ export const myCustomDecorator = ({ themes, defaultState, ...rest }) => { Let's use Vuetify as an example. Vuetify uses it's own global state to know which theme to render. To build a custom decorator to accommodate this method we'll need to do the following ```js -// .storybook/withVeutifyTheme.decorator.js +// .storybook/withVuetifyTheme.decorator.js import { DecoratorHelpers } from '@storybook/addon-themes'; import { useTheme } from 'vuetify';