Skip to content

Instantly share code, notes, and snippets.

@pedantix
Created November 20, 2021 17:55
Show Gist options
  • Save pedantix/3eeb87cdf0db2218af55615076b32629 to your computer and use it in GitHub Desktop.
Save pedantix/3eeb87cdf0db2218af55615076b32629 to your computer and use it in GitHub Desktop.
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