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
|
|
}
|
|
}
|