fix(client-api): import isPlainObject directly from lodash

This commit is contained in:
Damian Stasik 2021-03-22 21:08:14 +01:00
parent 3dca0198a3
commit 008f99eeba

View File

@ -1,6 +1,6 @@
import { Args, ArgTypes } from '@storybook/addons';
import { once } from '@storybook/client-logger';
import { isPlainObject } from 'lodash';
import isPlainObject from 'lodash/isPlainObject';
import dedent from 'ts-dedent';
type ValueType = { name: string; value?: ObjectValueType | ValueType };