Files
hermes/mobile/ios-app/App/HermesApp.swift
T
2026-04-09 15:39:32 +02:00

13 lines
223 B
Swift

import SwiftUI
@main
struct HermesApp: App {
var body: some Scene {
WindowGroup {
RootView()
.preferredColorScheme(.dark)
.tint(HermesTheme.accent)
}
}
}