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

16 lines
485 B
Swift

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