18 lines
213 B
Swift
18 lines
213 B
Swift
//
|
|
// SesameApp.swift
|
|
// Sesame
|
|
//
|
|
// Created by iMac on 24.01.22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SesameApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|