// // StatCollectionViewCell.swift // TournamentStats // // Created by Laurent Morvillier on 27/08/2019. // Copyright © 2019 Stax River. All rights reserved. // import Foundation import UIKit class StatCollectionViewCell: UICollectionViewCell { override func awakeFromNib() { super.awakeFromNib() // self.layer.borderColor = UIColor.white.cgColor // self.layer.borderWidth = 1.0 } @IBOutlet weak var nameLabel: UILabel! @IBOutlet weak var valueLabel: UILabel! }