yattee/Shared/PearvidiousApp.swift
2021-07-28 01:14:03 +02:00

16 lines
253 B
Swift

import SwiftUI
@main
struct PearvidiousApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
#if !os(tvOS)
.commands {
SidebarCommands()
}
#endif
}
}