The official integrations package for the LocalStack design system
npm install @localstack/integrations@localstack/integrationsThe @localstack/integrations package delivers a Material UI theme designed to define the fundamental look and feel for LocalStack-related products. Additionally, it offers an event-driven interface to handle events from the official web application at app.localstack.cloud. This is the only theming solution officially supported for LocalStack Extensions.
Integrate the LocalStackThemeProvider at a high level within your React application to apply the theme.
``jsx
import { LocalStackThemeProvider } from '@localstack/integrations';
const App = () => {
return (
);
};
``