🚀 First version

This commit is contained in:
Victor Bodinaud
2024-04-18 19:32:10 +02:00
parent 0a30000e8c
commit 9ec3ba818b
67 changed files with 1905 additions and 29 deletions

17
AlloVictor/AppState.swift Normal file
View File

@@ -0,0 +1,17 @@
//
// AppState.swift
// AlloVictor
//
// Created by Bodinaud Victor on 13/04/2024.
//
import Foundation
enum Route: Hashable {
case offers
case detail(Offer?)
}
class AppState: ObservableObject {
@Published var routes: [Route] = []
}