diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-01-13 20:34:00 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-01-13 20:34:00 -0600 |
commit | 541737c71ec220d276f0be7bf1092fb879f1b231 (patch) | |
tree | 2eb9c68c39a18dbb725eb3b7ab0314e56327f31a /LibreEdit/LibreEditApp.swift | |
download | libre-edit-541737c71ec220d276f0be7bf1092fb879f1b231.tar.gz libre-edit-541737c71ec220d276f0be7bf1092fb879f1b231.tar.bz2 libre-edit-541737c71ec220d276f0be7bf1092fb879f1b231.zip |
Initial Commit
Diffstat (limited to 'LibreEdit/LibreEditApp.swift')
-rw-r--r-- | LibreEdit/LibreEditApp.swift | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LibreEdit/LibreEditApp.swift b/LibreEdit/LibreEditApp.swift new file mode 100644 index 0000000..23a791f --- /dev/null +++ b/LibreEdit/LibreEditApp.swift @@ -0,0 +1,17 @@ +// +// LibreEditApp.swift +// LibreEdit +// +// Created by Christian Cleberg on 2024-01-13. +// + +import SwiftUI + +@main +struct LibreEditApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} |