Тип «Провайдер <AnyAction>» отсутствует - PullRequest
0 голосов
/ 26 апреля 2019

Я делаю проект реагирования с машинописью.

Это мой код в 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)

Я не могу понять, что означают эти сообщения об ошибках.

Что я должен сделать, чтобы исправить эту ошибку?

1 Ответ

0 голосов
/ 26 апреля 2019

OMG

мое имя файла было index.ts

Я изменил его на index.tsx

Теперь работает хорошо.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...