import 'package:notube/store/videos/videos.reducer.dart';
import './app.state.dart';
AppState appReducer(AppState state, action) => AppState(
videosState: videosReducer(state.videosState, action),
);