Bubble/Threaded/Views/Settings/AboutView.swift

14 lines
194 B
Swift
Raw Normal View History

2023-12-30 20:57:41 +01:00
//Made by Lumaa
import SwiftUI
struct AboutView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
AboutView()
}