metatext/Views/UIKit/Table View Cells/ConversationTableViewCell.swift
Justin Mazzocchi d716e8a68e
Refactoring
2021-02-08 18:48:02 -08:00

16 lines
500 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
final class ConversationTableViewCell: SeparatorConfiguredTableViewCell {
var viewModel: ConversationViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = ConversationContentConfiguration(viewModel: viewModel).updated(for: state)
accessibilityElements = [contentView]
}
}