UNPKG

ra-core

Version:

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

18 lines 617 B
import * as React from 'react'; import { ReactNode } from 'react'; import { UserMenuContextValue } from './UserMenuContext'; /** * A React context provider that provides access to the user menu context. * @param props * @param {ReactNode} props.children * @param {UserMenuContextValue} props.value The user menu context */ export declare const UserMenuContextProvider: ({ children, value }: { children: any; value: any; }) => React.JSX.Element; export type UserMenuContextProviderProps = { children: ReactNode; value: UserMenuContextValue; }; //# sourceMappingURL=UserMenuContextProvider.d.ts.map