23 lines
419 B
Swift
23 lines
419 B
Swift
//
|
|
// ViewController.swift
|
|
// Firebase test
|
|
//
|
|
// Created by Max Hunt on 06/05/2020.
|
|
// Copyright © 2020 smt. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class ViewController: UIViewController {
|
|
@IBOutlet weak var loginBtn: UIButton!
|
|
@IBOutlet weak var signupBtn: UIButton!
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
|
|
}
|
|
|