Files
nirvana-ios/nirvana-ios/Views/Inbox/InboxView.swift
T

22 lines
475 B
Swift

//
// InboxView.swift
// nirvana-ios
//
// Created by Arjun Patel on 12/20/21.
//
import SwiftUI
struct InboxView: View {
var body: some View {
Text("This is the inbox where you can see a bunch of inboxes")
//TODO: add illustration if there is no one in inbox, but have button to open sheet for contacts with the sheet view object
}
}
struct InboxView_Previews: PreviewProvider {
static var previews: some View {
InboxView()
}
}