ios/BitwardenWatchApp/NotificationView.swift
2024-01-16 06:46:13 -07:00

14 lines
237 B
Swift

import SwiftUI
struct NotificationView: View {
var body: some View {
Text("Hello, World!")
}
}
struct NotificationView_Previews: PreviewProvider {
static var previews: some View {
NotificationView()
}
}