mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
17 lines
389 B
Swift
17 lines
389 B
Swift
![]() |
//
|
||
|
// WidgetErrorTableViewCell.swift
|
||
|
// Widget Extension
|
||
|
//
|
||
|
// Created by David Sinclair on 2019-11-26.
|
||
|
// Copyright © 2019 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class WidgetErrorTableViewCell: UITableViewCell {
|
||
|
/// The reuse identifier for this table view cell.
|
||
|
static let reuseIdentifier = "WidgetErrorTableViewCell"
|
||
|
|
||
|
@IBOutlet var errorLabel: UILabel!
|
||
|
}
|