UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

13 lines (10 loc) 264 B
/** * @deprecated use useCreatePath instead */ export const linkToRecord = (resource, id, linkType = 'edit') => { const link = `${resource}/${encodeURIComponent(id)}`; if (linkType === 'show') { return `${link}/show`; } return link; };