react-redux: Remove ReactNode import

This commit is contained in:
Olegs Jeremejevs
2018-05-11 16:21:10 +03:00
parent c5521e38a9
commit a0f9774a4d
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import * as React from "react"
import { render } from "react-dom"
import { Provider, IntlProvider, IntlState, IntlAction, intlReducer, updateIntl } from "react-intl-redux"
import { createStore } from 'redux'
import { createStore } from "redux"
var action: IntlAction = updateIntl({ locale : "en", messages : {} })
var state: IntlState = intlReducer({ locale : "en", messages : {} }, action)

View File

@@ -1,4 +1,4 @@
// Type definitions for react-redux 6.0.2
// Type definitions for react-redux 6.0.3
// Project: https://github.com/reactjs/react-redux
// Definitions by: Qubo <https://github.com/tkqubo>,
// Thomas Hasner <https://github.com/thasner>,
@@ -30,7 +30,6 @@ import {
Component,
ComponentClass,
ComponentType,
ReactNode,
StatelessComponent
} from 'react';