23 lines
434 B
Plaintext
23 lines
434 B
Plaintext
import UIKit
|
|
import TableKit
|
|
import RxSwift
|
|
import RxCocoa
|
|
import PinLayout
|
|
|
|
/// <#Cell description#>
|
|
final class {{ module_info.name }}: UITableViewCell, ConfigurableCell {
|
|
|
|
private var disposeBag = DisposeBag()
|
|
|
|
override func prepareForReuse() {
|
|
super.prepareForReuse()
|
|
|
|
disposeBag = DisposeBag()
|
|
}
|
|
|
|
func configure(with viewModel: {{ module_info.name }}ViewModel) {
|
|
// configuration
|
|
}
|
|
|
|
}
|