13 lines
136 B
QML
13 lines
136 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Page {
|
|
|
|
Label {
|
|
anchors.centerIn: parent
|
|
|
|
text: "Orders"
|
|
}
|
|
|
|
}
|