dudu-mastodon/duduji/Core/Notification/Views/NotificationView.swift
Ching 22eedb04a4 feat(View): 增加 MainTableView 和 ToolBar
增加 MainTableView 和 ToolBar

Signed-off-by: Ching <loooching@gmail.com>
2023-05-07 18:37:26 +08:00

21 lines
323 B
Swift

//
// NotificationView.swift
// duduji
//
// Created by ching on 2023/5/7.
//
import SwiftUI
struct NotificationView: View {
var body: some View {
Text("Notification View")
}
}
struct NotificationView_Previews: PreviewProvider {
static var previews: some View {
NotificationView()
}
}