This commit is contained in:
0x8664b2
2025-06-20 09:06:01 -07:00
commit 07b70455a3
12 changed files with 735 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import SwiftUI
@main
struct MarkdownViewerApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}