mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-15 09:04:45 +00:00
2275fe4f1f
Adding types instead of var for stores used in qml components Closes: #14801
23 lines
485 B
QML
23 lines
485 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import AppLayouts.Wallet.views 1.0
|
|
|
|
import shared.stores 1.0 as SharedStores
|
|
|
|
import "../../stores"
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
property ContactsStore contactsStore
|
|
property SharedStores.NetworkConnectionStore networkConnectionStore
|
|
property var sendModal
|
|
|
|
SavedAddresses {
|
|
sendModal: root.sendModal
|
|
contactsStore: root.contactsStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
}
|
|
}
|