mirror of
https://github.com/easychen/pushdeer.git
synced 2025-01-10 23:15:30 +08:00
22 lines
357 B
Swift
22 lines
357 B
Swift
|
//
|
||
|
// MessageListView.swift
|
||
|
// PushDeer
|
||
|
//
|
||
|
// Created by HEXT on 2021/12/25.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
/// 消息界面
|
||
|
struct MessageListView: View {
|
||
|
var body: some View {
|
||
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct MessageView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
MessageListView()
|
||
|
}
|
||
|
}
|