mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
20 lines
381 B
Swift
20 lines
381 B
Swift
//
|
|
// UserMessageList.swift
|
|
// MeshtasticClient
|
|
//
|
|
// Created by Garth Vander Houwen on 12/24/21.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct UserMessageList: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
struct UserMessageList_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
UserMessageList()
|
|
}
|
|
}
|