20

我使用左边这个简单的 React 元素作为右边页面的根元素。

如何修复显示的错误?

在此处输入图像描述

4

3 回答 3

2

这种 hacky 类型转换使错误消失,尽管我根本不明白:

const App: any = require('./components/views/app/app');

于 2016-06-07T12:56:16.290 回答
1

怎么样:

class App extends React.Component<any, any> {
    render() {
        return <div>foo</div>;
    }
}
于 2016-06-07T10:24:16.377 回答
0

React 期望在 mainScreenHelper.tsx 中从导入的 App 中获得 React.StatelessComponent 这意味着您需要在 App 中提供该接口

interface IProps {}
const App : React.StatelessComponent<IProps> = () => (
   <div></div>
);
于 2017-01-05T20:23:13.040 回答