mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
import { combineReducers } from 'redux';
|
|
|
|
export default (state, action) => {
|
|
return state;
|
|
};
|
|
|
|
export function notAReducer(notState, notAction) {
|
|
console.log(notState, notAction);
|
|
}
|
|
|
|
export const nestedReducer = combineReducers({
|
|
inner: (state, action) => state
|
|
});
|