27 lines
370 B
Swift
27 lines
370 B
Swift
|
//
|
||
|
// 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()
|
||
|
}
|