mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-09 13:18:58 +00:00
12 lines
268 B
Text
12 lines
268 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial
|
|
|
|
Comp := Rectangle {
|
|
property<int> prop;
|
|
}
|
|
|
|
export Test := Rectangle {
|
|
Comp {
|
|
prop: 45;
|
|
}
|
|
}
|