18 lines
221 B
Swift
18 lines
221 B
Swift
//
|
|
// EmojiArtApp.swift
|
|
// EmojiArt
|
|
//
|
|
// Created by ching on 2023/2/19.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct EmojiArtApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|