19 lines
420 B
QML
19 lines
420 B
QML
import QtQuick 2.13
|
|
|
|
RightTabBaseView {
|
|
id: root
|
|
|
|
signal sendToAddressRequested(string address)
|
|
|
|
SavedAddresses {
|
|
objectName: "savedAddressesArea"
|
|
width: root.width
|
|
height: root.height - header.height
|
|
|
|
contactsStore: root.contactsStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
|
|
onSendToAddressRequested: root.sendToAddressRequested(address)
|
|
}
|
|
}
|