mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
16 lines
306 B
Swift
16 lines
306 B
Swift
![]() |
//
|
||
|
// GridFeedCell.swift
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by David Sinclair on 2022-08-19.
|
||
|
// Copyright © 2022 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
/// Collection view cell for a feed detail title.
|
||
|
class GridFeedCell: UICollectionViewCell {
|
||
|
static let reuseIdentifier = "GridFeedCell"
|
||
|
|
||
|
}
|