18 lines
297 B
Swift
18 lines
297 B
Swift
//
|
|
// FirebonkApp.swift
|
|
// Firebonk
|
|
//
|
|
// Created by Patrick Müller on 12.01.23.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct FirebonkApp: App {
|
|
var body: some Scene {
|
|
DocumentGroup(newDocument: FirebonkDocument()) { file in
|
|
ContentView(document: file.$document)
|
|
}
|
|
}
|
|
}
|