aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlimport/data/QTBUG-77102/imports/MyPlugin/MyComponent_1_0.qml
blob: d9cff582bbbd9acf014619c422ab2aa2cf42fff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

import QtQuick 2.0

Rectangle {
    width: 50
    height: 50

    color: "orange"

    Text {
        anchors.centerIn: parent
        text: "1.0"

    }
}