redux-saga-router
redux-saga-router copied to clipboard
How detect leaving from current location
Code below not work `const routes = { '/assets/:id/:tab?': function*({ id }) {
try {
yield* fetchAssetsItemSaga(id);
} finally {
if (yield cancelled()) {
console.log('leave from', id);
}
}
}
};`