19 lines
213 B
Swift
19 lines
213 B
Swift
//
|
|
// ContentView.swift
|
|
// HaruDanim
|
|
//
|
|
// Created by 송예찬 on 7/3/26.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
MainTabView()
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ContentView()
|
|
}
|