moment/src/qml/SidePane/AccountList.qml

12 lines
175 B
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Layouts 1.3
2019-05-14 03:15:03 +10:00
import "../Base"
2019-05-14 03:15:03 +10:00
HListView {
id: accountList
clip: true
model: Backend.accounts
delegate: AccountDelegate {}
}