mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-27 02:01:02 -04:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
import { combineReducers } from 'redux';
|
|
|
|
import { reducer as app } from './';
|
|
import { reducer as flash } from '../components/Flash/redux';
|
|
|
|
export default combineReducers({
|
|
app,
|
|
flash
|
|
});
|