24 lines
375 B
Swift
24 lines
375 B
Swift
//
|
|
// CardView.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 7/4/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct CardView: View {
|
|
@Binding var result: SearchResult
|
|
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
/*
|
|
struct CardView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
CardView()
|
|
}
|
|
}
|
|
*/
|