18 lines
285 B
QML
18 lines
285 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import Qt.labs.qmlmodels
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
StackView {
|
|
id: employeesStack
|
|
|
|
anchors.fill: parent
|
|
initialItem: "EmployeesTable.qml"
|
|
anchors.topMargin: Dimensions.m
|
|
}
|
|
}
|
|
|