mirror of
https://github.com/logos-storage/logos-storage-installer.git
synced 2026-01-05 23:13:06 +00:00
10 lines
143 B
JavaScript
10 lines
143 B
JavaScript
|
|
export class MainMenu {
|
||
|
|
constructor(uiService) {
|
||
|
|
this.ui = uiService;
|
||
|
|
}
|
||
|
|
|
||
|
|
show = () => {
|
||
|
|
this.ui.showInfoMessage("hello");
|
||
|
|
};
|
||
|
|
}
|