mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
18 lines
234 B
Swift
18 lines
234 B
Swift
//
|
|
// PearvidiousApp.swift
|
|
// Shared
|
|
//
|
|
// Created by Arkadiusz Fal on 09/06/2021.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct PearvidiousApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|