daddy/client/src/store/sagas/init.ts

7 lines
108 B
TypeScript

import { all, put } from "redux-saga/effects";
export function* initRootSaga() {
yield all([
]);
}