mirror of
https://github.com/kean/Pulse.git
synced 2026-05-30 21:07:33 +00:00
18 lines
366 B
Swift
18 lines
366 B
Swift
// The MIT License (MIT)
|
|
//
|
|
// Copyright (c) 2020-2023 Alexander Grebenyuk (github.com/kean).
|
|
|
|
import SwiftUI
|
|
import PulseUI
|
|
|
|
@main
|
|
struct Pulse_Demo_macOSApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ConsoleView(store: .demo)
|
|
}
|
|
.windowStyle(.hiddenTitleBar)
|
|
.windowToolbarStyle(.unified(showsTitle: false))
|
|
}
|
|
}
|