jel/Jel/JelApp.swift

18 lines
208 B
Swift
Raw Normal View History

2023-12-11 19:27:48 +00:00
//
// JelApp.swift
// Jel
//
// Created by zerocool on 12/11/23.
//
import SwiftUI
@main
struct JelApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}