76b699ad64
Put QML components into folders, remove unused ones, split __init__.py with engine.py.
10 lines
146 B
QML
10 lines
146 B
QML
import QtQuick 2.7
|
|
import "../base" as Base
|
|
|
|
Rectangle {
|
|
Base.HLabel {
|
|
anchors.centerIn: parent
|
|
text: "Add room page"
|
|
}
|
|
}
|