[Typescript] Custom Elements in React

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>;

 

posted @ 2023-02-22 15:38  Zhentiw  阅读(44)  评论(0编辑  收藏  举报