Created
November 20, 2021 17:55
-
-
Save pedantix/3eeb87cdf0db2218af55615076b32629 to your computer and use it in GitHub Desktop.
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 StoreListCell: View { | |
var body: some View { | |
Text("A Store List Cell") | |
} | |
} | |
struct StoreListCell_Previews: PreviewProvider { | |
static var previews: some View { | |
StoreListCell().modifier(PreviewGroup()) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment