todos-contra-el-fuego-mobile/lib/redux/appReducer.dart
2018-06-28 18:52:48 +02:00

9 lines
No EOL
249 B
Dart

import 'actions.dart';
import '../models/appState.dart';
AppState appReducer(AppState state, action) {
if (action is FetchYourLocationsSucceededAction) {
return state.copyWith(yourLocations: action.fetchedYourLocations);
}
return state;
}