mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-12 03:07:05 +00:00

* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant * Fix accidental change to datahub user module license
11 lines
346 B
TypeScript
11 lines
346 B
TypeScript
import Component from '@glimmer/component';
|
|
import { IDynamicComponent } from '@datahub/shared/types/dynamic-component';
|
|
|
|
interface IFoxieDynamicComponentsContainerArgs {
|
|
options: {
|
|
components: Array<IDynamicComponent>;
|
|
};
|
|
}
|
|
|
|
export default class FoxieDynamicComponentsContainer extends Component<IFoxieDynamicComponentsContainerArgs> {}
|