aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/createComponent.qml
blob: 292f51f9eba66ad19f13f7ffbcf7052856231664 (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 2.0
import "componentCreation.js" as MyScript

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

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