import React,{Component} from 'react';
type PropsType={}
type StateType={
showText:string
}
class TestPage extends Component<PropsType,StateType>{
constructor(props){
super(props);
this.state={
showText:""
}
}
render(){
return <div>
<div>{this.state.showText}</div>
</div>
}
}