2020-08-21 04:29:01 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct StatusListView: UIViewControllerRepresentable {
|
2020-08-26 23:20:44 +02:00
|
|
|
let viewModel: StatusListViewModel
|
2020-08-21 04:29:01 +02:00
|
|
|
|
|
|
|
func makeUIViewController(context: Context) -> StatusListViewController {
|
|
|
|
StatusListViewController(viewModel: viewModel)
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateUIViewController(_ uiViewController: StatusListViewController, context: Context) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|