19 lines
283 B
Swift
19 lines
283 B
Swift
//
|
|
// BeRealApp.swift
|
|
// BeReal
|
|
//
|
|
// Created by Javier Cicchelli on 29/11/2022.
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct BeRealApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|