Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit 9032340

Browse files
author
rsavian
committed
Merge branch 'typescript' into feature/typescript-code-splitting
# Conflicts: # src/RouterWrapper.tsx
2 parents 9d80935 + 1c8bd17 commit 9032340

24 files changed

+32
-32
lines changed

src/RouterWrapper.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import Contact from './views/contact/Contact';
88
import FooterAsync from './views/landmarks/FooterAsync';
99
import Header from './views/landmarks/Header';
1010
import NotFoundAsync from './views/errors/NotFoundAsync';
11-
import IStore from './interfaces/store/IStore';
12-
import ISagaStore from './interfaces/store/ISagaStore';
11+
import IStore from './interfaces/stores/IStore';
12+
import ISagaStore from './interfaces/stores/ISagaStore';
1313

1414
interface IProviderWrapperProps {
1515
store: ISagaStore<IStore>;

src/client.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import * as React from 'react';
88
import * as ReactDOM from 'react-dom';
99
import RouterWrapper from './RouterWrapper';
1010
import ProviderService from './services/ProviderService';
11-
import IStore from './interfaces/store/IStore';
12-
import ISagaStore from './interfaces/store/ISagaStore';
11+
import IStore from './interfaces/stores/IStore';
12+
import ISagaStore from './interfaces/stores/ISagaStore';
1313

1414
const rehydrateState = window.__ASYNC_COMPONENTS_STATE__;
1515
const initialState: IStore = {
File renamed without changes.
File renamed without changes.

src/server/controllers/ReactController.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import * as Hapi from 'hapi';
99
import RouterWrapper from '../../RouterWrapper';
1010
import ProviderService from '../../services/ProviderService';
1111
import rootSaga from '../../stores/rootSaga';
12-
import ISagaStore from '../../interfaces/store/ISagaStore';
13-
import IStore from '../../interfaces/store/IStore';
12+
import ISagaStore from '../../interfaces/stores/ISagaStore';
13+
import IStore from '../../interfaces/stores/IStore';
1414
import IController from '../../interfaces/server/IController';
1515

1616
class ReactController implements IController {

0 commit comments

Comments
 (0)