1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

12 lines
203 B
React
Raw Normal View History

2018-09-17 15:35:46 +02:00
2018-09-17 16:42:58 +02:00
import {urlEscape} from 'components/utils/query'
2018-09-17 15:35:46 +02:00
export const makeSearchQueryProps = function(query) {
2018-09-17 16:42:58 +02:00
query = urlEscape(query);
2018-09-17 15:35:46 +02:00
return {
pathname: '/search',
search: `?q=${query}`
}
}