FontFace/Shared/FontFaceApp.swift

18 lines
220 B
Swift

//
// FontFaceApp.swift
// Shared
//
// Created by on 2021/4/18.
//
import SwiftUI
@main
struct FontFaceApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}