mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-18 04:25:21 +00:00
17 lines
361 B
Swift
17 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)
|
||
|
}
|
||
|
}
|