mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2025-01-14 10:26:23 +01:00
14 lines
258 B
Swift
14 lines
258 B
Swift
|
//
|
||
|
// https://mczachurski.dev
|
||
|
// Copyright © 2022 Marcin Czachurski and the repository contributors.
|
||
|
// Licensed under the MIT License.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct FederatedFeedView: View {
|
||
|
var body: some View {
|
||
|
Text("Federated feed")
|
||
|
}
|
||
|
}
|