peerplays_migrated/programs/full_web_node/qml/main.qml
Nathan Hourt 8fc1ac736b Add new full_web_node target
This will eventually run a full node complete with bundled web GUI
2015-08-12 15:47:03 -04:00

13 lines
178 B
QML

import QtQuick 2.5
import QtQuick.Window 2.2
import QtWebEngine 1.0
Window {
width: 800
height: 600
visible: true
WebEngineView {
anchors.fill: parent
}
}