mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-27 05:57:28 +00:00
10 lines
154 B
QML
10 lines
154 B
QML
|
import QtQuick 2.0
|
||
|
import QtQuick.Controls 1.0;
|
||
|
import QtQuick.Layouts 1.0;
|
||
|
|
||
|
Rectangle {
|
||
|
id: transactionView
|
||
|
visible: false
|
||
|
Text { text: "TX VIEW" }
|
||
|
}
|