15b3697a9f
* Updated transit key action to components * Fix indentation * Leverage parent action directly from components * Added tracked attribute
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
import Component from '@glimmer/component';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class ExportComponent extends Component {
|
|
@tracked
|
|
wrapTTL = null;
|
|
@tracked
|
|
exportVersion = false;
|
|
}
|