summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/qml-intro/basic-syntax.qml
blob: b241500c1f63762fc91d6fbf9605e0ca0b3343f5 (plain)
1
2
3
4
5
6
7
8
// Note: this file is not intended to be run.

//! [basic syntax]
SomeElement {
    id: myObject
    ... some other things here ...
}
//! [basic syntax]