storybook

Author:Helene

本文章采用 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议 进行许可。转载请注明来自Helene的博客

  • content

why does instructions in the documentation not exhibit correctly?

NO.1. one of reasons is that you use Partial on custom arguments. like this:
> Partial<BaseButtonProps & React.ButtonHTMLAttributes<HTMLElement>>

However, if you use it like this, this problem will be addressed:
> BaseButtonProps & Partial<React.ButtonHTMLAttributes<HTMLElement>>

NO.2. Default value cannot be exhibited correctly in the documentation
> not correct:
const {
        btnType = 'default',
        className,
        disabled = false,
        size,
        children,
        href,
        ...restProps
    } = props 
    
> correct:
export const Button: React.FC<ButtonProps> = ({
                                                  btnType = 'default',
                                                  className,
                                                  disabled = false,
                                                  size,
                                                  children,
                                                  href,
                                                  ...restProps
                                              })