19 lines
414 B
Swift
19 lines
414 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import UIKit
|
||
|
import ViewModels
|
||
|
|
||
|
struct TagContentConfiguration {
|
||
|
let viewModel: TagViewModel
|
||
|
}
|
||
|
|
||
|
extension TagContentConfiguration: UIContentConfiguration {
|
||
|
func makeContentView() -> UIView & UIContentView {
|
||
|
TagView(configuration: self)
|
||
|
}
|
||
|
|
||
|
func updated(for state: UIConfigurationState) -> TagContentConfiguration {
|
||
|
self
|
||
|
}
|
||
|
}
|