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