summaryrefslogtreecommitdiff
path: root/tests/manual/qml/testfiles_quick2/usingbutton.qml
blob: c407e10908e28dd1f973dd39de60a25886566dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0
import "components" as X

Rectangle {
    width: 640
    height: 480

    X.MyButton {
    }

}