mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
15 lines
330 B
Swift
15 lines
330 B
Swift
//
|
|
// StoryPagesCollectionCell.swift
|
|
// NewsBlur
|
|
//
|
|
// Created by David Sinclair on 2022-08-19.
|
|
// Copyright © 2022 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
/// Collection view cell for a story.
|
|
class StoryPagesCollectionCell: UICollectionViewCell {
|
|
static let reuseIdentifier = "StoryPagesCollectionCell"
|
|
|
|
}
|