ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
22 lines • 736 B
TypeScript
/**
* Get the string to append to all links to the admin app.
*
* Useful when the app is mounted on a sub path, e.g. '/admin'.
*
* This hook is used internally by all react-admin components that
* contain a link, and requires that the basename is set via the
* `<BasenameContextProvider>` component (or via the `<Admin>` component,
* which calls BasenameContextProvider internally).
*
* @see BasenameContextProvider
*
* @example
* import { useBasename } from 'react-admin';
*
* const ArticleLink = ({ title, id }) => {
* const basename = useBasename();
* return <a href={`${basename}/articles/${id}`}>{title}</a>;
* };
*/
export declare const useBasename: () => string;
//# sourceMappingURL=useBasename.d.ts.map