mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-27 23:05:57 +00:00
17 lines
264 B
QML
17 lines
264 B
QML
|
import QtQuick 2.14
|
||
|
import StatusQ.Controls 0.1
|
||
|
|
||
|
import shared.controls 1.0
|
||
|
|
||
|
Column {
|
||
|
id: root
|
||
|
|
||
|
property alias input: codeInput
|
||
|
|
||
|
StatusSyncCodeInput {
|
||
|
id: codeInput
|
||
|
implicitWidth: 400
|
||
|
mode: StatusSyncCodeInput.WriteMode
|
||
|
}
|
||
|
}
|