zdhxiong / mdui

Material Design 3(Material You) UI components using Web Components.

Home Page:https://www.mdui.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

建议输出一个扩展 JSX 类型的 d.ts 文件

BaffinLee opened this issue · comments

如题,在 VSCode 中写 JSX 会报错

image

你可以自己添加类型声明临时解决这个问题:

declare global {
  namespace JSX {
    interface IntrinsicElements {
      "mdui-top-app-bar": any;
    }
  }
}

后续会考虑打包一个 react 组件库。

嗯,我现在自己加了,感谢