2023-03-14 02:52:16 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
|
|
|
|
import StatusQ.Popups.Dialog 0.1
|
|
|
|
|
2023-08-16 09:57:32 +00:00
|
|
|
import shared.views 1.0
|
2023-03-14 02:52:16 +00:00
|
|
|
|
|
|
|
StatusDialog {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
title: qsTr("How to get a sync code on...")
|
2023-10-03 13:31:54 +00:00
|
|
|
horizontalPadding: 24
|
|
|
|
verticalPadding: 32
|
2023-03-14 02:52:16 +00:00
|
|
|
footer: null
|
|
|
|
|
2023-08-16 09:57:32 +00:00
|
|
|
SyncingCodeInstructions {
|
2023-03-14 02:52:16 +00:00
|
|
|
}
|
|
|
|
}
|