22 lines
380 B
Swift
22 lines
380 B
Swift
|
//
|
||
|
// ContentView.swift
|
||
|
// Tetris WatchKit Extension
|
||
|
//
|
||
|
// Created by Shadowfacts on 10/14/19.
|
||
|
// Copyright © 2019 Shadowfacts. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct ContentView: View {
|
||
|
var body: some View {
|
||
|
Text("Hello, World!")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct ContentView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|