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

//! [document]
import QtQuick

Image {
    source: "pics/qtlogo.png"
}
//! [document]