stack template root molecule

This commit is contained in:
Kyle Matthew Hedden 2021-03-22 13:40:41 -04:00
parent a45b5119cb
commit 59435f98f3

View File

@ -15,6 +15,10 @@ import Foundation
}
public var moleculeStack: StackModel
public override var rootMolecules: [MoleculeModelProtocol] {
return [header, moleculeStack, footer].compactMap { $0 }
}
public init(pageType: String, moleculeStack: StackModel) {
self.moleculeStack = moleculeStack
super.init(pageType: pageType)