mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-10 19:20:59 +00:00
13 lines
240 B
Swift
13 lines
240 B
Swift
import SwiftUI
|
|
import WidgetKit
|
|
|
|
@main
|
|
struct IceCubesAppWidgetsExtensionBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
LatestPostsWidget()
|
|
HashtagPostsWidget()
|
|
ListsPostWidget()
|
|
MentionsWidget()
|
|
AccountWidget()
|
|
}
|
|
}
|