@darwino/darwino-react-bootstrap-notes
Version:
A set of Javascript classes and utilities
13 lines (11 loc) • 320 B
JSX
/*
* (c) Copyright Darwino Inc. 2014-2017.
*/
export default function RouteForm(entry) {
let form = entry && entry.form
if(form) {
let path = form.replace(" ","").toLowerCase()
return "/forms/" + encodeURIComponent(path) + "/" + encodeURIComponent(entry.__meta.unid)
}
return null;
}