mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-04-24 17:48:39 +02:00
19 lines
262 B
Swift
19 lines
262 B
Swift
//
|
|
// MemolaApp.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 5/4/24.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct MemolaApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
MemosView()
|
|
.persistence(\.viewContext)
|
|
}
|
|
}
|
|
}
|