IceCubesApp/IceCubesAppWidgetsExtension/IceCubesAppWidgetsExtensionBundle.swift

12 lines
198 B
Swift
Raw Normal View History

2024-05-05 11:12:19 +00:00
import WidgetKit
import SwiftUI
@main
struct IceCubesAppWidgetsExtensionBundle: WidgetBundle {
var body: some Widget {
LatestPostsWidget()
2024-05-05 17:31:28 +00:00
HashtagPostsWidget()
2024-05-06 06:37:58 +00:00
MentionsWidget()
2024-05-05 11:12:19 +00:00
}
}