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

15 lines
427 B
Swift

// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
import ViewModels
final class TagTableViewCell: SeparatorConfiguredTableViewCell {
var viewModel: TagViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = TagContentConfiguration(viewModel: viewModel).updated(for: state)
}
}