# First Mirror Test

By [0xShibaInuMaruko](https://paragraph.com/@shiba8maruko) · 2022-08-14

---

    //
    //  ContentView.swift
    //  HelloWorld
    //
    //  Created by gk.Xu on 2022/8/14.
    //
    
    import SwiftUI
    
    struct ContentView: View {
        var body: some View {
            Text("Hello, world!")
                .padding()
        }
    }
    
    struct ContentView_Previews: PreviewProvider {
        static var previews: some View {
            ContentView()
        }
    }

---

*Originally published on [0xShibaInuMaruko](https://paragraph.com/@shiba8maruko/first-mirror-test)*
