NotificationView.swift 415 B

123456789101112131415161718192021
  1. //
  2. // NotificationView.swift
  3. // Firestore_Example_watchOS WatchKit Extension
  4. //
  5. // Created by Cheryl Lin on 2022-06-08.
  6. // Copyright © 2022 Google. All rights reserved.
  7. //
  8. import SwiftUI
  9. struct NotificationView: View {
  10. var body: some View {
  11. Text("Hello, World!")
  12. }
  13. }
  14. struct NotificationView_Previews: PreviewProvider {
  15. static var previews: some View {
  16. NotificationView()
  17. }
  18. }