Merge branch '14102-actions-repository'
[arvados-workbench2.git] / src / store / collections / collections-reducer.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { combineReducers } from 'redux';
6 import { collectionUploaderReducer, CollectionUploaderState } from "./uploader/collection-uploader-reducer";
7
8 export type CollectionsState = {
9     uploader: CollectionUploaderState
10 };
11
12 export const collectionsReducer = combineReducers({
13     uploader: collectionUploaderReducer
14 });