mobile-ios/CovidSafe/OnboardingStep2ViewController.swift
2020-05-27 16:22:34 +10:00

16 lines
361 B
Swift

//
// OnboardingStep2ViewController.swift
// CovidSafe
//
// Copyright © 2020 Australian Government. All rights reserved.
//
import UIKit
import UserNotifications
class OnboardingStep2ViewController: UIViewController {
@IBAction func onBackTapped(_ sender: UIButton) {
self.navigationController?.popViewController(animated: true)
}
}