summaryrefslogtreecommitdiff
path: root/qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml')
-rw-r--r--qml/MainWindow.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/qml/MainWindow.qml b/qml/MainWindow.qml
new file mode 100644
index 0000000..41424f8
--- /dev/null
+++ b/qml/MainWindow.qml
@@ -0,0 +1,8 @@
+import QtQuick
+
+Window {
+ width: 640
+ height: 480
+ visible: true
+ title: qsTr("Hello World")
+}