Firebonk_iOS/Firebonk/Views/Tabs/Profile.swift

21 lines
337 B
Swift
Raw Normal View History

2023-01-12 22:07:37 +00:00
//
// Profile.swift
// Firebonk
//
// Created by Patrick Müller on 12.01.23.
//
import SwiftUI
struct Profile: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct Profile_Previews: PreviewProvider {
static var previews: some View {
Profile()
}
}