Skip to main content

Implementation

1

Add HTML Container

<div id="form"></div>
2

Initialize Result Component

// Create loading form component for individual processing
const loading = oneSdkInstance.component("form", {
   name: "LOADING",     // Personal information form
});
3

Mount Component

// Mount loading form to DOM element with id "form"
loading.mount("#form");

Configuration Options

interface LoadingConfig {
  name: "LOADING";            // Screen identifier
  title: TitleConfig;        // Title configuration
  descriptions: Description[]; // Description array
}

Title

interface TitleConfig {
  label: string;
  style?: "ff-title";
}

Descriptions

interface Description {
  label: string;
  style?: "ff-description";
}