2022-03-01 10:14:13 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
|
2023-12-26 10:19:41 +00:00
|
|
|
RightTabBaseView {
|
2022-03-01 10:14:13 +00:00
|
|
|
id: root
|
2023-02-20 10:57:45 +00:00
|
|
|
|
2023-12-26 10:19:41 +00:00
|
|
|
SavedAddresses {
|
2024-01-16 07:42:05 +00:00
|
|
|
objectName: "savedAddressesArea"
|
2023-12-26 10:19:41 +00:00
|
|
|
width: root.width
|
|
|
|
height: root.height - header.height
|
2022-09-05 09:15:47 +00:00
|
|
|
|
2023-12-26 10:19:41 +00:00
|
|
|
sendModal: root.sendModal
|
|
|
|
contactsStore: root.contactsStore
|
2024-02-02 09:55:56 +00:00
|
|
|
networkConnectionStore: root.networkConnectionStore
|
2022-03-01 10:14:13 +00:00
|
|
|
}
|
|
|
|
}
|