aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/createComponent.qml
blob: f71526fc7023556bd9bf2f5a87cd23b60553c34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//![0]
import QtQuick
import "componentCreation.js" as MyScript

Rectangle {
    id: appWindow
    width: 300; height: 300

    Component.onCompleted: MyScript.createSpriteObjects();
}
//![0]