mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
c791173c81
connection Closes: #13326
21 lines
411 B
QML
21 lines
411 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import AppLayouts.Wallet.views 1.0
|
|
|
|
import "../../stores"
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
property ContactsStore contactsStore
|
|
property var networkConnectionStore
|
|
property var sendModal
|
|
|
|
SavedAddresses {
|
|
sendModal: root.sendModal
|
|
contactsStore: root.contactsStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
}
|
|
}
|