WIP: Sidebar improvements, working on other views.

This commit is contained in:
2026-01-01 08:47:23 -05:00
parent 24c87602e9
commit 582d94d13b
10 changed files with 175 additions and 76 deletions

View File

@@ -1,3 +1,4 @@
import Dependencies
import Foundation
public struct Project: Codable, Equatable, Identifiable, Sendable {
@@ -57,3 +58,20 @@ extension Project {
}
}
}
#if DEBUG
extension Project {
public static let mock = Self(
id: UUID(0),
name: "Testy McTestface",
streetAddress: "1234 Sesame Street",
city: "Monroe",
state: "OH",
zipCode: "55555",
createdAt: Date(),
updatedAt: Date()
)
}
#endif