21 lines
355 B
Swift
21 lines
355 B
Swift
//
|
|
// NotificationView.swift
|
|
// InfiniSolar WatchKit Extension
|
|
//
|
|
// Created by Evgeny Zinoviev on 03.08.2021.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct NotificationView: View {
|
|
var body: some View {
|
|
Text("Hello, World!")
|
|
}
|
|
}
|
|
|
|
struct NotificationView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NotificationView()
|
|
}
|
|
}
|