Extend Flowable Work
We can add our own apps to Flowable Work using Flow-Apps.
In addition we can use this mechanism to add our own form components to Flowable Work. For example:
const applications: ExternalApplication[] = [];
const applicationSorting: { [appId: string]: number } = {};
const translations = {};
import { HelloForms } from "./HelloForms";
import { ProgressBar } from "./ProgressBar";
const formComponents = [
['helloForms', HelloForms],
['progressBar', ProgressBar]
];
export default { applications, applicationSorting, translations, formComponents };