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