mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2025-01-01 03:37:26 +01:00
20 lines
369 B
Swift
20 lines
369 B
Swift
|
//
|
||
|
// https://mczachurski.dev
|
||
|
// Copyright © 2022 Marcin Czachurski and the repository contributors.
|
||
|
// Licensed under the MIT License.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct LocalFeedView: View {
|
||
|
var body: some View {
|
||
|
Text("Local feed")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct LocalFeedView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
LocalFeedView()
|
||
|
}
|
||
|
}
|