feat: set up project

This commit is contained in:
dscyrescotti
2024-05-04 11:26:14 +07:00
parent 4806a4294a
commit 45b63ca0d9
5 changed files with 95 additions and 30 deletions

View File

@@ -0,0 +1,17 @@
//
// MemolaApp.swift
// Memola
//
// Created by Dscyre Scotti on 5/4/24.
//
import SwiftUI
@main
struct MemolaApp: App {
var body: some Scene {
WindowGroup {
MemosView()
}
}
}