21 lines
324 B
Swift
21 lines
324 B
Swift
//
|
|
// SettingsView.swift
|
|
// RippleChat
|
|
//
|
|
// Created by Severin Memmishofer on 11.07.23.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct SettingsView: View {
|
|
var body: some View {
|
|
Text("Hello, Settings!")
|
|
}
|
|
}
|
|
|
|
struct SettingsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
SettingsView()
|
|
}
|
|
}
|