backup. before shop update

This commit is contained in:
2021-08-31 13:28:33 -04:00
parent c378a6203c
commit 808ffa3211
292 changed files with 51551 additions and 695 deletions

View File

@@ -0,0 +1,13 @@
import '../../models/cart_info.dart';
import 'package:redux/redux.dart';
import '../actions.dart';
final cartInfoReducer = combineReducers<List<CartInfo>>([
TypedReducer<List<CartInfo>, UpdateCartInfo>(_updateCartInfo)
]);
List<CartInfo> _updateCartInfo(List<CartInfo> cartInfos, action) {
return action.cartInfos;
}