mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2024-12-26 17:03:28 +01:00
14 lines
250 B
Swift
14 lines
250 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")
|
|
}
|
|
}
|