UNPKG

react-router

Version:
11 lines (9 loc) 186 B
/** * Encapsulates a redirect to the given route. */ function Redirect(to, params, query) { this.to = to; this.params = params; this.query = query; } module.exports = Redirect;