NotificationView.swift 237 B

1234567891011121314
  1. import SwiftUI
  2. struct NotificationView: View {
  3. var body: some View {
  4. Text("Hello, World!")
  5. }
  6. }
  7. struct NotificationView_Previews: PreviewProvider {
  8. static var previews: some View {
  9. NotificationView()
  10. }
  11. }