mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-11 19:11:00 +00:00
18 lines
439 B
Swift
18 lines
439 B
Swift
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
struct InstanceContentConfiguration {
|
|
let viewModel: InstanceViewModel
|
|
}
|
|
|
|
extension InstanceContentConfiguration: UIContentConfiguration {
|
|
func makeContentView() -> UIView & UIContentView {
|
|
InstanceView(configuration: self)
|
|
}
|
|
|
|
func updated(for state: UIConfigurationState) -> InstanceContentConfiguration {
|
|
self
|
|
}
|
|
}
|