// // ComposeRepliedToTootContentCollectionViewCell.swift // Mastodon // // Created by MainasuK Cirno on 2021-3-11. // import UIKit final class ComposeRepliedToTootContentCollectionViewCell: UICollectionViewCell { override init(frame: CGRect) { super.init(frame: frame) _init() } required init?(coder: NSCoder) { super.init(coder: coder) _init() } } extension ComposeRepliedToTootContentCollectionViewCell { private func _init() { } }