aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/image.qml
blob: f73793384ca8b757334d2e3235201147cbff3f82 (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 2.0

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