mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-06 00:39:31 +00:00
27 lines
748 B
Swift
27 lines
748 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import SwiftUI
|
|
import ViewModels
|
|
|
|
struct TableView: UIViewControllerRepresentable {
|
|
@EnvironmentObject var identification: Identification
|
|
let viewModelClosure: () -> CollectionViewModel
|
|
|
|
func makeUIViewController(context: Context) -> TableViewController {
|
|
TableViewController(viewModel: viewModelClosure(), identification: identification)
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: TableViewController, context: Context) {
|
|
|
|
}
|
|
}
|
|
|
|
#if DEBUG
|
|
import PreviewViewModels
|
|
|
|
struct StatusListView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
TableView { NavigationViewModel(identification: .preview).timelineViewModel }
|
|
}
|
|
}
|
|
#endif
|