18 lines
219 B
Swift
18 lines
219 B
Swift
//
|
|
// yobbleApp.swift
|
|
// yobble
|
|
//
|
|
// Created by cheykrym on 19.09.2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct yobbleApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|