import React,{ Component,Fragment } from 'react'; interface Props{ mouse:any; } class Cat extends React.Component { render() { const mouse = this.props.mouse; return ( ); } } export default Cat;