2020-07-02 15:30:50 -05:00
|
|
|
//
|
|
|
|
// ArticleContainerView.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 7/2/20.
|
|
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
import Articles
|
|
|
|
|
|
|
|
struct ArticleContainerView: View {
|
|
|
|
|
|
|
|
@EnvironmentObject private var sceneModel: SceneModel
|
2020-07-11 18:22:47 -05:00
|
|
|
var articles: [Article]
|
2020-07-02 15:30:50 -05:00
|
|
|
|
|
|
|
@ViewBuilder var body: some View {
|
2020-07-11 18:22:47 -05:00
|
|
|
ArticleView(sceneModel: sceneModel, articles: articles)
|
2020-07-05 18:53:18 -05:00
|
|
|
.modifier(ArticleToolbarModifier())
|
2020-07-02 15:30:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|