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