mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-27 13:54:11 +00:00
15 lines
365 B
Text
15 lines
365 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
import { MainScreen } from "components/mainView/mainScreen.slint";
|
|
import { Api } from "api.slint";
|
|
|
|
export { Api }
|
|
|
|
export component AppWindow inherits Window {
|
|
min-width: 960px;
|
|
min-height: 540px;
|
|
preferred-width: 960px;
|
|
preferred-height: 540px;
|
|
|
|
MainScreen { }
|
|
}
|