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

//! [document]
// B.qml
import QtQuick 2.15

Item {
    A.MyInlineComponent {}
}
//! [document]