The contacts section within the KigoContext allows you to specify important contact information, such as a support email address, to be used throughout your application.

Default

The code below shows the default value for the contacts section:

const kigoContext = {
  contacts: {
    supportEmail: "",
  },
};

Properties

  • supportEmail - The email address that users can contact for support.
    • Default: "" - If set to "", no support email will be provided in the application.
    • Valid values: string
    • Example:
      contacts: { supportEmail: "[email protected]" }
      

This property can be customized to align with your specific application needs by setting it within the KigoContext.


What’s Next