mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
15.19.2019 7c2035e219c39f14792ae44e92b2c708ea47f6e0
1
2
3
4
5
6
7
8
9
10
import {combineReducers} from 'redux';
import log from './log';
import version from './version';
 
const reducers = combineReducers({
    log,
    version
});
 
export default reducers;