burrow/Apple/App/BurrowApp.swift
2023-04-10 16:49:23 -04:00

10 lines
139 B
Swift

import SwiftUI
@main
struct BurrowApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}