zl程序教程

您现在的位置是:首页 >  前端

当前栏目

[Typescript] Custom Elements in React

typescriptReact in Elements Custom
2023-09-14 08:59:11 时间
import React from 'react';

declare global {
  namespace JSX {
    interface IntrinsicElements {
      'custom-element': {
        children?: React.ReactNode;
        title?: string
      };
    }
  }
}

const element = <custom-element title="abc">hello world</custom-element>;