mirror of
https://github.com/exyte/PopupView.git
synced 2026-06-06 20:18:33 +00:00
21 lines
356 B
Swift
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()
|
|
}
|
|
}
|