mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-17 15:59:22 +08:00
21 lines
279 B
Swift
21 lines
279 B
Swift
//
|
|
// ContentView.swift
|
|
// PushDeerClip
|
|
//
|
|
// Created by HEXT on 2021/12/30.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
MainView()
|
|
}
|
|
}
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContentView()
|
|
}
|
|
}
|