1
0
Fork 0
pdsman-ios/PDSMan/ContentView.swift
2025-03-19 01:25:06 -06:00

19 lines
251 B
Swift

//
// ContentView.swift
// PDSMan
//
// Created by Atridad Lahiji on 2025-03-18.
//
import SwiftUI
struct ContentView: View {
var body: some View {
MainAppView()
.accentColor(.blue)
}
}
#Preview {
ContentView()
}