extract MainTabView

Start to clean ContentView up a bit.

We need it to be cleaner before we introduce the SetupView

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2022-05-19 08:33:37 -07:00
parent b34d3956b5
commit 3d1c011e73
4 changed files with 111 additions and 37 deletions

View File

@@ -0,0 +1,20 @@
//
// SetupView.swift
// damus
//
// Created by William Casarin on 2022-05-18.
//
import SwiftUI
struct SetupView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct SetupView_Previews: PreviewProvider {
static var previews: some View {
SetupView()
}
}