From a2881ed1c74e80a165516683027296b255d015e6 Mon Sep 17 00:00:00 2001 From: Huy Nguyen Date: Tue, 4 Apr 2017 10:16:14 -0400 Subject: [PATCH] Fix lint errors --- .../react-router-redux-tests.tsx | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/types/react-router-redux/react-router-redux-tests.tsx b/types/react-router-redux/react-router-redux-tests.tsx index cd2c42167d..b6927fb7bf 100644 --- a/types/react-router-redux/react-router-redux-tests.tsx +++ b/types/react-router-redux/react-router-redux-tests.tsx @@ -1,35 +1,35 @@ -import * as React from 'react' -import * as ReactDOM from 'react-dom' +import * as React from 'react'; +import * as ReactDOM from 'react-dom'; -import { createStore, combineReducers, applyMiddleware, Reducer } from 'redux' -import { Provider } from 'react-redux' +import { createStore, combineReducers, applyMiddleware, Reducer } from 'redux'; +import { Provider } from 'react-redux'; -import createHistory from 'history/createBrowserHistory' -import { Route } from 'react-router' +import createHistory from 'history/createBrowserHistory'; +import { Route } from 'react-router'; -import { ConnectedRouter, routerReducer, routerMiddleware, push, RouterState } from 'react-router-redux' +import { ConnectedRouter, routerReducer, routerMiddleware, push, RouterState } from 'react-router-redux'; // Create a history of your choosing (we're using a browser history in this case) -const history = createHistory() +const history = createHistory(); // Build the middleware for intercepting and dispatching navigation actions -const middleware = routerMiddleware(history) +const middleware = routerMiddleware(history); interface State { - router: RouterState + router: RouterState; } // For testing, assume the router reducer is the only sub-reducer: -const reducers: Reducer = combineReducers({router: routerReducer}) +const reducers: Reducer = combineReducers({router: routerReducer}); // Add the reducer to your store on the `router` key // Also apply our middleware for navigating const store = createStore( reducers, applyMiddleware(middleware) -) +); -const Home = () =>
Home
+const Home = () =>
Home
; ReactDOM.render( { /* ConnectedRouter will use the store from Provider automatically */ } @@ -40,7 +40,7 @@ ReactDOM.render( , document.getElementById('root') -) +); // Now you can dispatch navigation actions from anywhere! -store.dispatch(push('/foo')) +store.dispatch(push('/foo'));