13 lines
177 B
Swift
13 lines
177 B
Swift
|
|
|
|
import SwiftUI
|
|
|
|
struct BikeView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
BikeView()
|
|
}
|