# Setup platform widgets

The Workleap platform widgets library provides native integration with Squide Firefly, allowing the two libraries to share configuration and integrate seamlessly during bootstrap.

First, open a terminal at the root of the solution and install the @worleap-widgets/squide-firefly package:

pnpm add @workleap-widgets/squide-firefly

Then, import the initializeWidgets function from @workleap-widgets/squide-firefly in the host application, and call it with a Squide Firefly runtime instance to initialize the widgets:

host/src/index.tsx
import { initializeWidgets } from "@workleap-widgets/squide-firefly";
import { initializeFirefly } from "@squide/firefly";

const fireflyRuntime = initializeFirefly();

const widgetsRuntime = initializeWidgets(fireflyRuntime, "wlp", "development", {
    colorScheme: "light",
    language: "en-US",
    widgets: {
        fte: {
            invitationModal: true
        }
    }
});

Finally, import the isBootstrapping hook from @workleap-widgets/squide-firefly to show a loading animation until the widgets are ready:

import { useIsBootstrapping } from "@workleap-widgets/squide-firefly";

function BootstrappingRoute() {
    // ...

    if (useIsBootstrapping()) {
        return <div>Loading...</div>;
    }

    return // ...
}

For additional information, refer to the official documentation of the platform widgets.