Meshtastic-Apple/MeshtasticClient/Views/Messages/Contacts.swift

20 lines
353 B
Swift

//
// Contacts.swift
// MeshtasticClient
//
// Created by Garth Vander Houwen on 12/21/21.
//
import SwiftUI
struct Contacts: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct Contacts_Previews: PreviewProvider {
static var previews: some View {
Contacts()
}
}