| 123456789101112131415161718192021 |
- //
- // NotificationView.swift
- // Firestore_Example_watchOS WatchKit Extension
- //
- // Created by Cheryl Lin on 2022-06-08.
- // Copyright © 2022 Google. All rights reserved.
- //
- import SwiftUI
- struct NotificationView: View {
- var body: some View {
- Text("Hello, World!")
- }
- }
- struct NotificationView_Previews: PreviewProvider {
- static var previews: some View {
- NotificationView()
- }
- }
|