You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
PadelClub/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift

19 lines
348 B

//
// InscriptionManagerView.swift
// PadelClub
//
// Created by Razmig Sarkissian on 29/02/2024.
//
import SwiftUI
struct InscriptionManagerView: View {
let tournament: Tournament
var body: some View {
List {
Text(tournament.playerCount.formatted())
}
.navigationTitle("Inscriptions")
}
}