metatext/Views/UIKit/Content Configurations/IdentityContentConfiguration.swift

19 lines
439 B
Swift
Raw Normal View History

2021-01-28 23:15:22 +00:00
// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
import ViewModels
struct IdentityContentConfiguration {
let viewModel: IdentityViewModel
}
extension IdentityContentConfiguration: UIContentConfiguration {
func makeContentView() -> UIView & UIContentView {
IdentityView(configuration: self)
}
func updated(for state: UIConfigurationState) -> IdentityContentConfiguration {
self
}
}