Skip to content

Commit 05905a4

Browse files
Move framework stuff into 'fx' folder
1 parent 59b28ae commit 05905a4

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
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 '../TypedRedux';
5+
import { provide } from '../fx/TypedRedux';
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 '../../TypedRedux';
3+
import { provide } from '../../fx/TypedRedux';
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 '../../TypedRedux';
3+
import { provide } from '../../fx/TypedRedux';
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 '../../TypedRedux';
3+
import { provide } from '../../fx/TypedRedux';
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 '../../TypedRedux';
3+
import { provide } from '../../fx/TypedRedux';
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 './TypedRedux';
5+
import { typedToPlain } from './fx/TypedRedux';
66

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

samples/react/MusicStore/ReactApp/isomorphic-fetch.d.ts renamed to samples/react/MusicStore/ReactApp/fx/isomorphic-fetch.d.ts

File renamed without changes.

samples/react/MusicStore/ReactApp/render-server.js renamed to samples/react/MusicStore/ReactApp/fx/render-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function loadViaBabel(module, filename) {
2323
}
2424

2525
var domainTasks = require('./domain-tasks.js');
26-
var bootServer = require('./boot-server.jsx').default;
26+
var bootServer = require('../boot-server.jsx').default;
2727

2828
function render(requestUrl, callback) {
2929
var store;

0 commit comments

Comments
 (0)