metatext/Views/AccountContentConfiguration.swift

19 lines
434 B
Swift
Raw Normal View History

2020-09-23 01:00:56 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
struct AccountContentConfiguration {
let viewModel: AccountViewModel
}
extension AccountContentConfiguration: UIContentConfiguration {
func makeContentView() -> UIView & UIContentView {
AccountView(configuration: self)
}
func updated(for state: UIConfigurationState) -> AccountContentConfiguration {
self
}
}