mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
e3e99c6a48
Closes: #8786
14 lines
302 B
QML
14 lines
302 B
QML
import QtQuick 2.14
|
|
|
|
Loader {
|
|
sourceComponent: hotComponent.component
|
|
|
|
property alias source: hotComponent.source
|
|
property alias rethrowErrors: hotComponent.rethrowErrors
|
|
readonly property alias errors: hotComponent.errors
|
|
|
|
HotComponentFromSource {
|
|
id: hotComponent
|
|
}
|
|
}
|