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

Commit d37963d

Browse files
committed
convert spaces to tabs.
Update formatting where tabs slipped in for indents.
1 parent 1c92cbf commit d37963d

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

examples/simple/actions/primes.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ export const ADD_NON_PRIME = 'ADD_PRIME';
44
export const QUEUE_NUMBER = 'QUEUE_NUMBER';
55

66
export function testPrime( number ) {
7-
return {
8-
type: QUEUE_NUMBER,
9-
number
10-
};
7+
return {
8+
type: QUEUE_NUMBER,
9+
number
10+
};
1111
}
1212

examples/simple/containers/App.jsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ import React, { Component, PropTypes } from 'react';
22
import { connect } from 'react-redux';
33

44
class App extends Component {
5-
constructor( props ) {
6-
super( props );
7-
}
5+
constructor( props ) {
6+
super( props );
7+
}
88

9-
render() {
10-
return (
11-
<div>
12-
<h1>redux-trigger simple example</h1>
13-
</div>
14-
);
15-
}
9+
render() {
10+
return (
11+
<div>
12+
<h1>redux-trigger simple example</h1>
13+
</div>
14+
);
15+
}
1616
}
1717

1818
App.propTypes = {
19-
dispatch: PropTypes.func.isRequired
19+
dispatch: PropTypes.func.isRequired
2020
};
2121

2222
function mapStateToProps( state ) {
23-
return { };
23+
return { };
2424
}
2525

2626
export default connect( mapStateToProps )( App );

examples/simple/store/configureStore.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ import createLogger from 'redux-logger';
33
import rootReducer from '../reducers';
44

55
const createStoreWithMiddleware = applyMiddleware(
6-
createLogger()
6+
createLogger()
77
)( createStore );
88

99
export default function configureStore( initialState ) {
10-
const store = createStoreWithMiddleware( rootReducer, initialState );
10+
const store = createStoreWithMiddleware( rootReducer, initialState );
1111

12-
if ( module.hot ) {
13-
// Enable Webpack hot module replacement for reducers
14-
module.hot.accept( '../reducers', () => {
15-
const nextRootReducer = require( '../reducers' );
16-
store.replaceReducer( nextRootReducer );
17-
} );
18-
}
12+
if ( module.hot ) {
13+
// Enable Webpack hot module replacement for reducers
14+
module.hot.accept( '../reducers', () => {
15+
const nextRootReducer = require( '../reducers' );
16+
store.replaceReducer( nextRootReducer );
17+
} );
18+
}
1919

20-
return store;
20+
return store;
2121
}
2222

0 commit comments

Comments
 (0)