19 lines
215 B
QML
19 lines
215 B
QML
import QtQuick
|
|
import KomplexHub
|
|
|
|
Window {
|
|
|
|
visible: true
|
|
flags: Qt.Window
|
|
title: "KomplexHub"
|
|
|
|
MainScreen {
|
|
antialiasing: true
|
|
id: mainScreen
|
|
|
|
anchors.fill: parent
|
|
}
|
|
|
|
}
|
|
|