Files
outline/frontend/utils/routeHelpers.js
Tom Moor e3b2fcf8c9 Improves
2017-05-26 00:04:13 -07:00

15 lines
238 B
JavaScript

// @flow
export function homeUrl() {
return '/dashboard';
}
export function newCollectionUrl() {
return '/collections/new';
}
export function searchUrl(query: string) {
if (query) return `/search/${query}`;
return `/search`;
}