starting basic demo convos ui

This commit is contained in:
talksik
2021-12-29 22:07:40 -08:00
parent c559a25f29
commit 984cc9c3a3
5 changed files with 35 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
//
// ConvosView.swift
// nirvana-ios
//
// Created by Arjun Patel on 12/29/21.
//
import SwiftUI
struct ConvosView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct ConvosView_Previews: PreviewProvider {
static var previews: some View {
ConvosView()
}
}