export class abc extends React.Component<IProps, IState> {
function(name: string) {
console.log("I wish to call this function"+ name);
}
render() {
return (
<div>Hello</div>
);
}
}
现在我想将上面定义的组件的函数方法调用到另一个 xyz.ts 类(不是反应组件)中,是否可以做同样的事情?
尚方宝剑之说
拉莫斯之舞
相关分类