mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-02-01 19:17:08 +01:00
14 lines
206 B
Swift
14 lines
206 B
Swift
|
//Made by Lumaa
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct PostDetailsView: View {
|
||
|
var body: some View {
|
||
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#Preview {
|
||
|
PostDetailsView()
|
||
|
}
|