1
0
mirror of https://github.com/metabolist/metatext synced 2024-12-11 08:55:54 +01:00
metatext-app-ios-iphone-ipad/Views/LoadMoreContentConfiguration.swift
Justin Mazzocchi 7f937601b1
Load more WIP
2020-10-04 01:39:54 -07:00

19 lines
439 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
struct LoadMoreContentConfiguration {
let viewModel: LoadMoreViewModel
}
extension LoadMoreContentConfiguration: UIContentConfiguration {
func makeContentView() -> UIView & UIContentView {
LoadMoreView(configuration: self)
}
func updated(for state: UIConfigurationState) -> LoadMoreContentConfiguration {
self
}
}