metatext/Shared/MetatextApp.swift

18 lines
228 B
Swift
Raw Normal View History

2020-07-19 02:06:12 +00:00
//
// MetatextApp.swift
// Shared
//
// Created by Justin Mazzocchi on 7/18/20.
//
import SwiftUI
@main
struct MetatextApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}