mirror of
https://github.com/status-im/status-app.git
synced 2026-08-27 15:11:20 +00:00
14 lines
297 B
QML
14 lines
297 B
QML
import QtQuick
|
|
|
|
Loader {
|
|
sourceComponent: hotComponent.component
|
|
|
|
property alias source: hotComponent.source
|
|
property alias rethrowErrors: hotComponent.rethrowErrors
|
|
readonly property alias errors: hotComponent.errors
|
|
|
|
HotComponentFromSource {
|
|
id: hotComponent
|
|
}
|
|
}
|