Skip to content
Snippets Groups Projects
reactRedux.ts 573 B
Newer Older
Glenn Vorhes's avatar
Glenn Vorhes committed
/**
 * Created by glenn on 6/12/2017.
 */
export import React = require('react');
export import ReactDom = require('react-dom');
export import reactRedux = require('react-redux');
export import redux = require('redux');

export const connect = reactRedux.connect;
export const Provider = reactRedux.Provider;
// export { connect, Provider } from 'react-redux';
export const combineReducers = redux.combineReducers;
export const createStore = redux.createStore;

// export {combineReducers, createStore, Store, } from 'redux';
Glenn Vorhes's avatar
Glenn Vorhes committed

export interface iAction{
    type: string;