6 lines
No EOL
147 B
Dart
6 lines
No EOL
147 B
Dart
import 'actions.dart';
|
|
|
|
bool loadedReducer(isLoaded, action) {
|
|
if (action is FetchYourLocationsSucceededAction) return true;
|
|
return isLoaded;
|
|
} |