Move framework stuff into 'fx' folder

This commit is contained in:
SteveSandersonMS
2016-02-07 22:18:27 -08:00
parent 59b28ae5ee
commit 05905a42ab
16 changed files with 16 additions and 16 deletions

View File

@@ -2,7 +2,7 @@ import * as React from 'react';
import { Navbar, Nav, NavItem, NavDropdown, MenuItem } from 'react-bootstrap';
import { Link } from 'react-router';
import { LinkContainer } from 'react-router-bootstrap';
import { provide } from '../TypedRedux';
import { provide } from '../fx/TypedRedux';
import { ApplicationState } from '../store';
import * as GenreList from '../store/GenreList';

View File

@@ -1,6 +1,6 @@
import * as React from 'react';
import { Link } from 'react-router';
import { provide } from '../../TypedRedux';
import { provide } from '../../fx/TypedRedux';
import { ApplicationState } from '../../store';
import * as AlbumDetailsState from '../../store/AlbumDetails';

View File

@@ -1,6 +1,6 @@
import * as React from 'react';
import { Link } from 'react-router';
import { provide } from '../../TypedRedux';
import { provide } from '../../fx/TypedRedux';
import { ApplicationState } from '../../store';
import * as GenreDetailsStore from '../../store/GenreDetails';
import { AlbumTile } from './AlbumTile';

View File

@@ -1,6 +1,6 @@
import * as React from 'react';
import { Link } from 'react-router';
import { provide } from '../../TypedRedux';
import { provide } from '../../fx/TypedRedux';
import { ApplicationState } from '../../store';
import * as GenreList from '../../store/GenreList';

View File

@@ -1,6 +1,6 @@
import * as React from 'react';
import { Link } from 'react-router';
import { provide } from '../../TypedRedux';
import { provide } from '../../fx/TypedRedux';
import { ApplicationState } from '../../store';
import { actionCreators } from '../../store/FeaturedAlbums';
import { AlbumTile } from './AlbumTile';