19 lines
215 B
Swift
19 lines
215 B
Swift
//
|
|
// Settings.swift
|
|
// WorkoutsPlus
|
|
//
|
|
// Created by Felix Förtsch on 30.08.24.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct Settings: View {
|
|
var body: some View {
|
|
Text("Settings")
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
Settings()
|
|
}
|