Reference external redux-typed package

This commit is contained in:
SteveSandersonMS
2016-02-09 11:20:47 -08:00
parent b8224d2bef
commit b35ac19485
12 changed files with 13 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
import { fetch } from 'domain-task/fetch';
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
import { ActionCreator } from './';
import { Genre } from './GenreList';

View File

@@ -1,5 +1,5 @@
import { fetch } from 'domain-task/fetch';
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
import { ActionCreator } from './';
// -----------------

View File

@@ -1,5 +1,5 @@
import { fetch } from 'domain-task/fetch';
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
import { ActionCreator } from './';
import { Album } from './FeaturedAlbums';

View File

@@ -1,5 +1,5 @@
import { fetch } from 'domain-task/fetch';
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
import { ActionCreator } from './';
// -----------------

View File

@@ -1,4 +1,4 @@
import { ActionCreatorGeneric } from '../fx/TypedRedux';
import { ActionCreatorGeneric } from 'redux-typed';
import * as FeaturedAlbums from './FeaturedAlbums';
import * as GenreList from './GenreList';
import * as GenreDetails from './GenreDetails';