Text {
  text: "Hello World"
  anchors.centerIn: parent
  MouseArea {
    anchors.fill: parent
    onClicked: {
       Qt.quit();
    }
  }
}