mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 04:34:55 -06:00
14 lines
237 B
Swift
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()
|
|
}
|
|
}
|