react-docgen-typescript icon indicating copy to clipboard operation
react-docgen-typescript copied to clipboard

Args of Table doesn't show content

Open mishin-dmitry opened this issue 3 years ago • 0 comments

Hello. I have some trouble with ArgsTable component.

This is my component

export const Input = forwardRef<HTMLInputElement, InputProps>(({
  className,
  style,
  variation = 'fill',
  display = 'normal',
  size = 'small',
  status,
  placeholder,
  icon,
  value = '',
  disabled,
  onChange,
  onFocus,
  onBlur,
  ...rest
}, ref) => (
    <input
      {...rest}
      value={value}
      placeholder={placeholder}
      onChange={onChange}
      onFocus={onFocus}
      onBlur={onBlur}
      disabled={disabled}
      className={styles.input}
      ref={ref}
    />
));

I have tried all types of export, which mentioned in other issues, but nothing work.

Here's my setup. node: 14.15.0 npm: 6.14.8 OS: mac storybook version: 6.1.21 react-docgen-typescript: 1.21.0 webpack version: 4.41.5

Could you help me, what's wrong?

mishin-dmitry avatar Aug 02 '22 17:08 mishin-dmitry