forked from jeena/FeedTheMonkey
15 lines
212 B
QML
15 lines
212 B
QML
import QtQuick 2.3
|
|
import QtQuick.Controls 1.2
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
visible: true
|
|
width: 360
|
|
height: 360
|
|
|
|
menuBar: TheMenuBar {}
|
|
|
|
Content {
|
|
anchors.fill: parent
|
|
}
|
|
}
|