Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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?