//
//  WeakPractice.swift
//  VoicePractice
//
//  Created by Wei Xian Ong on 2020/7/13.
//  Copyright © 2020 Wei Xian Ong. All rights reserved.
//

import UIKit

class WeakPractice: CustomNaviBar {


    @IBOutlet weak var startBtn: UIButton!
    override func viewDidLoad() {
        super.viewDidLoad()
        self.startBtn.layer.cornerRadius = 20
        // Do any additional setup after loading the view.
    }
    

    @IBAction func start(_ sender: Any) {
        performSegue(withIdentifier: "gotoWeaklyRecord", sender: nil)
    }
    /*
    // MARK: - Navigation

    // In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        // Get the new view controller using segue.destination.
        // Pass the selected object to the new view controller.
    }
    */

}