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