function useAppConfig(): Required<AppConfig>;
Required
AppConfig
const MyComponent = () => { // Access the app config from a child component const appConfig = useAppConfig(); return <div>{appConfig.appName}</div>; } function App() { return ( <CDPReactProvider config={config}> <MyComponent /> </CDPReactProvider> ); }
Was this page helpful?