piper-app/Piper/Sources/UI/Views/SettingsView.swift

27 lines
370 B
Swift
Raw Normal View History

//
// SettingsView.swift
// Piper ~ App
//
// Created by Javier Cicchelli on 13/10/2024.
// Copyright © 2024 Röck+Cöde. All rights reserved.
//
import SwiftUI
struct SettingsView: View {
// MARK: Body
var body: some View {
Text("Hello, World!")
.padding()
}
}
// MARK: - Previews
#Preview {
SettingsView()
}