24 lines
422 B
Swift
24 lines
422 B
Swift
//
|
|
// AddView.swift
|
|
// NetNewsWire-iOS
|
|
//
|
|
// Created by Maurice Parker on 6/17/19.
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct AddView : View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#if DEBUG
|
|
struct AddView_Previews : PreviewProvider {
|
|
static var previews: some View {
|
|
AddView()
|
|
}
|
|
}
|
|
#endif
|