21 lines
323 B
Swift
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()
|
|
}
|
|
}
|