status-desktop/ui/imports/shared/popups/GetSyncCodeInstructionsPopup.qml
Lukáš Tinkl 621090174a fix(GetSyncCodeInstructionsPopup): mention same network
- integrate it into Settings/Syncing
- simplify the GetSyncCodeInstruction structure
2023-10-05 10:12:48 +02:00

18 lines
263 B
QML

import QtQuick 2.14
import StatusQ.Popups.Dialog 0.1
import shared.views 1.0
StatusDialog {
id: root
title: qsTr("How to get a sync code on...")
horizontalPadding: 24
verticalPadding: 32
footer: null
SyncingCodeInstructions {
}
}