Skip to content

Instantly share code, notes, and snippets.

@tanmayb123
Created June 16, 2019 18:26
Show Gist options
  • Save tanmayb123/6f1ffe323a84dac047180d816e86f942 to your computer and use it in GitHub Desktop.
Save tanmayb123/6f1ffe323a84dac047180d816e86f942 to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView : View {
var body: some View {
Text("Hello World")
}
}
#if DEBUG
struct ContentView_Previews : PreviewProvider {
static var previews: some View {
ContentView()
}
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment