Conformed the FeedItemCell table cell in the Feed framework to the CellIdentifiable protocol.

This commit is contained in:
Javier Cicchelli 2024-03-21 00:18:34 +01:00
parent 3632de9518
commit dc91c93a5e

View File

@ -6,11 +6,12 @@
// Copyright © 2024 Röck+Cöde. All rights reserved. // Copyright © 2024 Röck+Cöde. All rights reserved.
// //
import ReviewsUIKit
import UIKit import UIKit
final class FeedItemCell: UITableViewCell { final class FeedItemCell: UITableViewCell, CellIdentifiable {
// MARK: Constants // MARK: Constants
static let identifier = "FeedItemCell" static let cellID = "FeedItemCell"
} }