mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 08:10:59 +00:00
18 lines
499 B
Swift
18 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
|
|
}
|
|
}
|