mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-07-16 01:32:49 +02:00
16 lines
221 B
Swift
16 lines
221 B
Swift
//
|
|
// Demo
|
|
// Copyright © 2020 John Rommel Estropia, Inc. All rights reserved.
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct DemoApp: App {
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
Menu.MainView()
|
|
}
|
|
}
|
|
}
|