I'm trying to convert my components to TypeScript. What type can I specify for render, which returns HTML?
class Component extends React.Component {
render() {
return (
<div>
...some HTML...
</div>
);
}
}