You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
369 B

//
// ContentView.swift
// BehindTheScenes
//
// Created by Simeon Saint-Saens on 4/6/19.
// Copyright © 2019 Two Lives Left. All rights reserved.
//
import SwiftUI
struct ContentView : View {
let count: Int
var body: some View {
VStack {
Text("Scene \(count)")
Text("This is a SwiftUI View 🚀")
}
}
}