better main view, add initial post view

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2022-04-03 15:40:18 -07:00
parent f4bb07081f
commit dc376a4a72
5 changed files with 156 additions and 81 deletions

View File

@@ -0,0 +1,20 @@
//
// Post.swift
// damus
//
// Created by William Casarin on 2022-04-03.
//
import SwiftUI
struct PostView: View {
var body: some View {
Text("New post")
}
}
struct Post_Previews: PreviewProvider {
static var previews: some View {
PostView()
}
}