Files
T
2023-05-04 16:36:55 +07:00

21 lines
356 B
Swift

//
// NotificationView.swift
// ExampleWatch WatchKit Extension
//
// Created by Alisa Mylnikova on 17/08/2020.
//
import SwiftUI
struct NotificationView: View {
var body: some View {
Text("Hello, World!")
}
}
struct NotificationView_Previews: PreviewProvider {
static var previews: some View {
NotificationView()
}
}