**TypeScript Version:** 3.2.0-rc, 3.2.1 **Code** ```tsx import * as React from "react"; import { Component, ReactType} from "react"; function App(props:{component:ReactType}) { const Comp: ReactType = props.component return (<Comp />) } ``` **Expected behavior:** Should output normal as TypeScript 3.1.6 **Actual behavior:** `TS2604: JSX element type 'Comp' does not have any construct or call signatures.`