mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
13 lines
244 B
React
13 lines
244 B
React
![]() |
|
||
|
/*
|
||
|
* Routing helpers: Make query link with props (q and sorting)
|
||
|
*/
|
||
|
|
||
|
export const makeQueryLinkProps = function(routing, query, sort, order) {
|
||
|
return {
|
||
|
pathname: routing.pathname,
|
||
|
search: `?s=${sort}&o=${order}&q=${query}`
|
||
|
};
|
||
|
}
|
||
|
|