my-files-sample/MyFiles/App/MyFilesApp.swift

19 lines
286 B
Swift
Raw Permalink Normal View History

2022-11-29 14:16:54 +01:00
//
// MyFilesApp.swift
// MyFiles
2022-11-29 14:16:54 +01:00
//
// Created by Javier Cicchelli on 29/11/2022.
// Copyright © 2022 Röck+Cöde. All rights reserved.
2022-11-29 14:16:54 +01:00
//
import SwiftUI
@main
struct MyFilesApp: App {
2022-11-29 14:16:54 +01:00
var body: some Scene {
WindowGroup {
ContentView()
}
}
}