For React-based frameworks (Next.js, React, etc.), install the React SDK:
Copy
npm install @microapp-io/react
Then integrate it into your application:
Copy
import { AuthProvider, UserPreferencesProvider} from '@microapp-io/react';function App() { return ( <AuthProvider> <UserPreferencesProvider> {/* Your app components */} </UserPreferencesProvider> </AuthProvider> );}
For more detailed information on each SDK, check out these specific guides:
Authentication - Learn how to implement user authentication
Localization - Display content in the user’s preferred language
Theming - Support light and dark mode in your microapp
For other frameworks, we support installing our JavaScript SDKs directly without the React wrapper. Check our Core Concepts documentation for framework-specific integration guides.