From aba26655769dabdc0b46d33c13bb861115302821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Semih=20Raif=20G=C3=BCrel?= Date: Wed, 20 Jan 2021 14:17:18 +0300 Subject: [PATCH] Fixed typo (yourTheme to YourTheme) --- docs/snippets/common/storybook-manager-custom-theme.js.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/snippets/common/storybook-manager-custom-theme.js.mdx b/docs/snippets/common/storybook-manager-custom-theme.js.mdx index 9d165b7e907..5affde34171 100644 --- a/docs/snippets/common/storybook-manager-custom-theme.js.mdx +++ b/docs/snippets/common/storybook-manager-custom-theme.js.mdx @@ -2,9 +2,9 @@ // .storybook/manager.js import { addons } from '@storybook/addons'; -import yourTheme from './yourTheme'; +import yourTheme from './YourTheme'; addons.setConfig({ theme: yourTheme, }); -``` \ No newline at end of file +```