mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-12 16:46:32 +01: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()
|
|
}
|
|
}
|