status-desktop/storybook/stubs/nim/sectionmocks/WalletSection.qml

20 lines
487 B
QML
Raw Normal View History

import QtQuick 2.15
// Required mock of: src/app/modules/main/wallet_section/view.nim
Item {
readonly property string contextPropertyName: "walletSection"
// Required
//
readonly property bool walletReady: true
//
// Silence warnings
readonly property QtObject overview: QtObject {
readonly property string mixedcaseAddress: ""
}
readonly property ListModel mixedcaseAddress: ListModel {}
signal walletAccountRemoved(string address)
}