ios-dev/comments/commentsApp.swift

18 lines
250 B
Swift
Raw Permalink Normal View History

2024-03-11 14:47:28 +03:00
//
// commentsApp.swift
// comments
//
// Created by Эрнест Литвиненко on 11.03.2024.
//
import SwiftUI
@main
struct commentsApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}