//
//  ContentView.swift
//  SampleApp
//
//  Created by Da Risk on 28/04/2025.
//
import SwiftUI
import aboutoss_sample_app
struct ContentView: View {
    var body: some View {
//        VStack {
//            Image(systemName: "globe")
//                .imageScale(.large)
//                .foregroundStyle(.tint)
//            Text("Hello, world!")
//        }
//        .padding()
        ComposeViewController()
    }
}
struct ComposeViewController: UIViewControllerRepresentable {
    func makeUIViewController(context: Context) -> UIViewController {
        return MainKt.MainViewController()
    }
    func updateUIViewController(_ uiViewController: UIViewController, context: Context) {
    }
}
#Preview {
    ContentView()
}