mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
9 lines
124 B
JavaScript
9 lines
124 B
JavaScript
|
|
export const makeSearchQueryProps = function(query) {
|
|
return {
|
|
pathname: '/search',
|
|
search: `?q=${query}`
|
|
}
|
|
}
|
|
|