Files
note/Note/NoteApp.swift
T
2026-07-12 15:41:53 +08:00

18 lines
210 B
Swift

//
// NoteApp.swift
// Note
//
// Created by fish on 2026/7/12.
//
import SwiftUI
@main
struct NoteApp: App {
var body: some Scene {
WindowGroup {
FormatterView()
}
}
}