mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-11 18:56:41 +00:00
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> {}
|