// // SettingsView.swift // Workouts // // Created by rzen on 7/20/25 at 8:14 AM. // // Copyright 2025 Rouslan Zenetl. All Rights Reserved. // import SwiftUI struct SettingsView: View { var body: some View { NavigationStack { Form { Section (header: Text("Options")) { } } } } }