UNPKG

@zextras/carbonio-shell-ui

Version:

The Zextras Carbonio web client

13 lines (12 loc) 379 B
import React from 'react'; interface AppContextProviderProps { pkg: string; children: React.ReactNode | React.ReactNode[]; } /** * Provide all the base providers of an app (e.g. i18n) * @param pkg - The app key of the module * @param children - */ export declare const AppContextProvider: ({ pkg, children }: AppContextProviderProps) => React.JSX.Element; export {};