mirror of
https://github.com/mastodon/mastodon-ios
synced 2025-04-11 22:58:02 +02:00
15 lines
302 B
Swift
15 lines
302 B
Swift
// Copyright © 2023 Mastodon gGmbH. All rights reserved.
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct WidgetExtensionBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
FollowersCountWidget()
|
|
MultiFollowersCountWidget()
|
|
LatestFollowersWidget()
|
|
HashtagWidget()
|
|
}
|
|
}
|