Skip to content

Commit b35ac19

Browse files
Reference external redux-typed package
1 parent b8224d2 commit b35ac19

File tree

12 files changed

+13
-12
lines changed

12 files changed

+13
-12
lines changed

samples/react/MusicStore/ReactApp/components/NavMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react';
22
import { Navbar, Nav, NavItem, NavDropdown, MenuItem } from 'react-bootstrap';
33
import { Link } from 'react-router';
44
import { LinkContainer } from 'react-router-bootstrap';
5-
import { provide } from '../fx/TypedRedux';
5+
import { provide } from 'redux-typed';
66
import { ApplicationState } from '../store';
77
import * as GenreList from '../store/GenreList';
88

samples/react/MusicStore/ReactApp/components/public/AlbumDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from 'react';
22
import { Link } from 'react-router';
3-
import { provide } from '../../fx/TypedRedux';
3+
import { provide } from 'redux-typed';
44
import { ApplicationState } from '../../store';
55
import * as AlbumDetailsState from '../../store/AlbumDetails';
66

samples/react/MusicStore/ReactApp/components/public/GenreDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from 'react';
22
import { Link } from 'react-router';
3-
import { provide } from '../../fx/TypedRedux';
3+
import { provide } from 'redux-typed';
44
import { ApplicationState } from '../../store';
55
import * as GenreDetailsStore from '../../store/GenreDetails';
66
import { AlbumTile } from './AlbumTile';

samples/react/MusicStore/ReactApp/components/public/Genres.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from 'react';
22
import { Link } from 'react-router';
3-
import { provide } from '../../fx/TypedRedux';
3+
import { provide } from 'redux-typed';
44
import { ApplicationState } from '../../store';
55
import * as GenreList from '../../store/GenreList';
66

samples/react/MusicStore/ReactApp/components/public/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from 'react';
22
import { Link } from 'react-router';
3-
import { provide } from '../../fx/TypedRedux';
3+
import { provide } from 'redux-typed';
44
import { ApplicationState } from '../../store';
55
import { actionCreators } from '../../store/FeaturedAlbums';
66
import { AlbumTile } from './AlbumTile';

samples/react/MusicStore/ReactApp/configureStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { createStore, applyMiddleware, compose, combineReducers } from 'redux';
22
import * as thunkModule from 'redux-thunk';
33
import { syncHistory, routeReducer } from 'react-router-redux';
44
import * as Store from './store';
5-
import { typedToPlain } from './fx/TypedRedux';
5+
import { typedToPlain } from 'redux-typed';
66

77
export default function configureStore(history: HistoryModule.History, initialState?: Store.ApplicationState) {
88
// Build middleware

samples/react/MusicStore/ReactApp/store/AlbumDetails.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { fetch } from 'domain-task/fetch';
2-
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
2+
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
33
import { ActionCreator } from './';
44
import { Genre } from './GenreList';
55

samples/react/MusicStore/ReactApp/store/FeaturedAlbums.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { fetch } from 'domain-task/fetch';
2-
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
2+
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
33
import { ActionCreator } from './';
44

55
// -----------------

samples/react/MusicStore/ReactApp/store/GenreDetails.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { fetch } from 'domain-task/fetch';
2-
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
2+
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
33
import { ActionCreator } from './';
44
import { Album } from './FeaturedAlbums';
55

samples/react/MusicStore/ReactApp/store/GenreList.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { fetch } from 'domain-task/fetch';
2-
import { typeName, isActionType, Action, Reducer } from '../fx/TypedRedux';
2+
import { typeName, isActionType, Action, Reducer } from 'redux-typed';
33
import { ActionCreator } from './';
44

55
// -----------------

0 commit comments

Comments
 (0)