一个常见的Button组件
使用组件的时候如果需要使用到 ButtonProps
类型,则需要下面这样导入
除了需要导入 Button 之外,还需要导入 ButtonProps,且存在可能的命名冲突,使用 TypeScript 命名空间,则可以将其组合成单个导入值
使用时:
来源:How to Simplify Component Imports with TypeScript Namespaces by sergiodxa
Sep 26, 20242 min read
一个常见的Button组件
使用组件的时候如果需要使用到 ButtonProps
类型,则需要下面这样导入
除了需要导入 Button 之外,还需要导入 ButtonProps,且存在可能的命名冲突,使用 TypeScript 命名空间,则可以将其组合成单个导入值
使用时:
来源:How to Simplify Component Imports with TypeScript Namespaces by sergiodxa