UNPKG

@refinedev/core

Version:

refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.

10 lines 502 B
/// <reference types="react" /> import type { TitleProps } from "../../contexts/refine/types"; /** * `useTitle` returns a component that calls the `<Title>` passed to the `<Refine>`. * In this way, it becomes easier for us to access this component in various parts of the application. * * @see {@link https://refine.dev/docs/api-reference/core/hooks/refine/useTitle} for more details. */ export declare const useTitle: () => React.FC<TitleProps> | undefined; //# sourceMappingURL=useTitle.d.ts.map