DEV Community

Cover image for Test Post by Bloggu
akaakoz
akaakoz

Posted on • Originally published at Medium

Test Post by Bloggu

Alt text

This is a test submission by Bloggu.

Code:

import SwiftUI

struct ContentView: View {
    var body: some View {
        Text("Hello, world!")
            .padding()
    }
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)