//
//  AstroContainerView.swift
//  Astro
//
//  Created by Jeremy Wiebe on 2015-08-24.
//  Copyright (c) 2015 Mobify Research & Development Inc. All rights reserved.
//

import Foundation

class AstroContainerView: UIView {
    override init(frame: CGRect) {
        super.init(frame: frame)
        translatesAutoresizingMaskIntoConstraints = false
        backgroundColor = UIColor.clear
    }

    required init(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}
