21 lines
337 B
Swift
21 lines
337 B
Swift
|
//
|
||
|
// 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()
|
||
|
}
|
||
|
}
|