OneSDKModuleseKYC FormLoadingCopy pageThe Loading Screen component offers a built-in loading component that you can display when background process is happening.Implementation 1Add HTML Container1<div id="form"></div>2Initialize Result Component1// Create loading form component for individual processing2const loading = oneSdkInstance.component("form", {3 name: "LOADING", // Personal information form4});3Mount Component1// Mount loading form to DOM element with id "form"2loading.mount("#form"); Configuration Options Basic Properties1interface LoadingConfig {2 name: "LOADING"; // Screen identifier3 title: TitleConfig; // Title configuration4 descriptions: Description[]; // Description array5}Component PartsTitle1interface TitleConfig {2 label: string;3 style?: "ff-title";4}Descriptions1interface Description {2 label: string;3 style?: "ff-description";4}