[Framework] Show top words for filtered items in the Feed List #12

Merged
javier merged 12 commits from framework/feed/top-words into main 2024-03-21 01:13:13 +00:00
Showing only changes of commit 3632de9518 - Show all commits

View File

@ -0,0 +1,16 @@
//
// CellIdentifiable.swift
// ReviewsUIKit
//
// Created by Javier Cicchelli on 21/03/2024.
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
//
import UIKit
public protocol CellIdentifiable: UITableViewCell {
// MARK: Properties
static var cellID: String { get }
}