yattee/Shared/PearvidiousApp.swift

16 lines
253 B
Swift
Raw Normal View History

2021-06-09 20:51:23 +00:00
import SwiftUI
@main
struct PearvidiousApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
2021-07-27 22:40:04 +00:00
#if !os(tvOS)
.commands {
SidebarCommands()
}
#endif
2021-06-09 20:51:23 +00:00
}
}