IceCubesApp/IceCubesApp/IceCubesAppApp.swift
2022-11-21 09:31:32 +01:00

16 lines
276 B
Swift

import SwiftUI
import Timeline
import Network
@main
struct IceCubesAppApp: App {
@StateObject private var client = Client(server: "mastodon.social")
var body: some Scene {
WindowGroup {
TimelineView(kind: .pub)
.environmentObject(client)
}
}
}