metatext/Shared/MetatextApp.swift
Justin Mazzocchi 8ee54c4bff
Initial Commit
2020-07-18 19:06:12 -07:00

18 lines
228 B
Swift

//
// MetatextApp.swift
// Shared
//
// Created by Justin Mazzocchi on 7/18/20.
//
import SwiftUI
@main
struct MetatextApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}