21 lines
341 B
Swift
21 lines
341 B
Swift
//
|
|
// EmojiArtApp.swift
|
|
// EmojiArt
|
|
//
|
|
// Created by ching on 2023/2/19.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct EmojiArtApp: App {
|
|
let document = EmojiArtDocument()
|
|
let paletteStore = PaletteStore(named: "Default")
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
EmojiArtDocumentView(document: document)
|
|
}
|
|
}
|
|
}
|