docs: import from theming module to support esm

This commit is contained in:
Blaine Bublitz 2021-01-25 14:06:59 -07:00
parent 65fe593cd1
commit f3e77d166b
5 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
```ts
// .storybook/YourTheme.js
import { create } from '@storybook/theming/create';
import { create } from '@storybook/theming';
export default create({
base: 'light',

View File

@ -1,7 +1,7 @@
```js
// .storybook/YourTheme.js
import { create } from '@storybook/theming/create';
import { create } from '@storybook/theming';
export default create({
base: 'light',

View File

@ -1,4 +1,4 @@
import { create } from '@storybook/theming/create';
import { create } from '@storybook/theming';
import { addons } from '@storybook/addons';
addons.setConfig({

View File

@ -1,4 +1,4 @@
import { create } from '@storybook/theming/create';
import { create } from '@storybook/theming';
import { addons } from '@storybook/addons';
addons.setConfig({

View File

@ -1,5 +1,5 @@
import { addons } from '@storybook/addons';
import { create } from '@storybook/theming/create';
import { create } from '@storybook/theming';
const theme = create({
base: 'light',