19 lines
245 B
Swift
19 lines
245 B
Swift
//
|
|
// dudujiApp.swift
|
|
// duduji
|
|
//
|
|
// Created by ching on 2023/5/3.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct dudujiApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
// ContentView()
|
|
AddAccountView()
|
|
}
|
|
}
|
|
}
|