Created
May 14, 2020 08:11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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