mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-10 08:44:59 +00:00
16 lines
361 B
Swift
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)
|
|
}
|
|
}
|