import QtQuick Rectangle { property alias redRect: redRect width: 200 height: 200 Rectangle { id: redRect width: 100 height: 100 color: "#ff0000" } }