Files
JetsonMediaIOS/Jetson Media/Jetson_MediaApp.swift
2025-08-17 22:08:25 +08:00

21 lines
396 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Jetson_MediaApp.swift
// Jetson Media
//
// Created by Spasol Reisa on 2025/8/16.
//
import SwiftUI
@main
struct Jetson_MediaApp: App {
let tabState = TabBarState() //
var body: some Scene {
WindowGroup {
MainView()
.environmentObject(tabState) // 使
}
}
}