首页 > 解决方案 > 输入“提供者”' 不见了

问题描述

我正在用打字稿做反应项目。

这是我在 index.ts 中的代码

const store = configureStore(initialStateFromDB);
ReactDOM.render(
  <Provider store={store}>
    <App></App>
  </Provider>,
  document.getElementById('app')
);

我得到了很多错误!

第一的。

Type 'Provider<AnyAction>' is missing the following properties from type 'ReactElement<any, string | ((props: any) => ReactElement<any, string | ... | (new (props: any) => Component<any, any, any>)> | null) | (new (props: any) => Component<any, any, any>)>[]': length, pop, push, concat, and 25 more.ts(2345)

第二

Conversion of type 'Store<{}, AnyAction> & { dispatch: {}; }' to type 'Provider<AnyAction>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.ts(2352)

我无法理解这些错误消息的含义。

我应该怎么做才能解决这个错误?

标签: reactjstypescriptredux

解决方案


我的天啊

我的文件名是index.ts

我把它改成index.tsx

现在效果很好。


推荐阅读