Skip to content

Instantly share code, notes, and snippets.

@msmobileapps
Created May 14, 2020 08:11
import SwiftUI
struct RepoCell: View {
@State var repoModel: Repo
static var imagePlaceHolder = UIImage(named: "image_placeholder")
var body: some View {
Text("New Cell")
}
}
struct RepoCell_Previews: PreviewProvider {
static var previews: some View {
RepoCell()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment