Initial Commit

This commit is contained in:
Victor Bodinaud
2024-04-13 16:27:28 +02:00
commit f3ccc9c034
10 changed files with 455 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//
// AlloVictorApp.swift
// AlloVictor
//
// Created by Bodinaud Victor on 13/04/2024.
//
import SwiftUI
@main
struct AlloVictorApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}