18 lines
322 B
Swift
18 lines
322 B
Swift
//
|
|
// TopWordsCell.swift
|
|
// ReviewsFeed
|
|
//
|
|
// Created by Javier Cicchelli on 21/03/2024.
|
|
// Copyright © 2024 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import ReviewsUIKit
|
|
import UIKit
|
|
|
|
final class TopWordsCell: UITableViewCell, CellIdentifiable {
|
|
|
|
// MARK: Constants
|
|
static let cellID = "TopWordsCell"
|
|
|
|
}
|