2016-01-27 11:34:44 -08:00
|
|
|
import errSaga from './err-saga';
|
|
|
|
import titleSaga from './title-saga';
|
2016-03-02 16:33:44 -08:00
|
|
|
import localStorageSaga from './local-storage-saga';
|
2016-03-02 22:19:04 -08:00
|
|
|
import hardGoToSaga from './hard-go-to-saga';
|
2016-05-11 21:14:08 -07:00
|
|
|
import windowSaga from './window-saga';
|
2016-01-27 11:34:44 -08:00
|
|
|
|
2016-05-11 21:14:08 -07:00
|
|
|
export default [
|
|
|
|
errSaga,
|
|
|
|
titleSaga,
|
|
|
|
localStorageSaga,
|
|
|
|
hardGoToSaga,
|
|
|
|
windowSaga
|
|
|
|
];
|