18 lines
230 B
Swift
18 lines
230 B
Swift
|
//
|
||
|
// BurgernotesApp.swift
|
||
|
// Burgernotes
|
||
|
//
|
||
|
// Created by ffqq on 23/02/2024.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
@main
|
||
|
struct BurgernotesApp: App {
|
||
|
var body: some Scene {
|
||
|
WindowGroup {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|
||
|
}
|