mirror of
https://github.com/metabolist/metatext
synced 2024-12-18 12:28:35 +01:00
18 lines
228 B
Swift
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()
|
|
}
|
|
}
|
|
}
|