// // ContentView.swift // Blackjack // // Root view for the Blackjack app. // import SwiftUI struct ContentView: View { var body: some View { GameTableView() } } #Preview { ContentView() }