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