mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-13 03:36:48 +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
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class FoxieScreensDefaultScenario extends Component<{}> {
|
|
@tracked
|
|
showWhatsNew = false;
|
|
|
|
@action
|
|
toggleWhatsNew(): void {
|
|
this.showWhatsNew = true;
|
|
}
|
|
}
|