@localstack/integrations
v1.1.1
Published
The official integrations package for the LocalStack design system
Downloads
517
Keywords
Readme
@localstack/integrations
The @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.
Usage
Integrate the LocalStackThemeProvider
at a high level within your React application to apply the theme.
import { LocalStackThemeProvider } from '@localstack/integrations';
const App = () => {
return (
<LocalStackThemeProvider>
<YourAppContent />
</LocalStackThemeProvider>
);
}