MoreForYouViewInterface.swift 463 Bytes
//
//  MoreForYouViewInterface.swift
//  WarplySDKFrameworkIOS
//
//  Created by Βασιλης Σκουρας on 20/4/22.
//

import Foundation
import SwiftUI

@available(iOS 13.0.0, *)
@objc public class MoreForYouViewInterface : NSObject {

    @objc(moreForYouViewController:) static public func moreForYouViewController(parentView: UIView?) -> UIViewController {
        return UIHostingController(rootView: MoreForYouView(parentView: parentView!))
    }

}