diff --git a/src/app/features/room/CinnyWidget.ts b/src/app/features/room/CinnyWidget.ts new file mode 100644 index 00000000..3894af87 --- /dev/null +++ b/src/app/features/room/CinnyWidget.ts @@ -0,0 +1,9 @@ +import { Widget } from 'matrix-widget-api'; +import { IApp } from './SmallWidget'; + +// Wrapper class for the widget definition +export class CinnyWidget extends Widget { + public constructor(private rawDefinition: IApp) { + super(rawDefinition); + } +}