18 lines
208 B
Swift
18 lines
208 B
Swift
//
|
|
// jasonApp.swift
|
|
// jason
|
|
//
|
|
// Created by Jason on 2024/1/16.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct MyApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
TabBarView()
|
|
}
|
|
}
|
|
}
|