wonders/ios/WonderousWidget/WonderousWidgetBundle.swift

13 lines
234 B
Swift
Raw Normal View History

2023-06-22 13:01:22 -06:00
import WidgetKit
import SwiftUI
// WonderousWidgetBundle
// -> WonderousWidgetView
// -> WonderousWidgetViewComponents
2023-06-22 13:01:22 -06:00
@main
2023-10-19 11:29:48 -06:00
struct WonderousWidgetBundle: WidgetBundle {
2023-06-22 13:01:22 -06:00
var body: some Widget {
2023-10-19 11:29:48 -06:00
WonderousWidget()
2023-06-22 13:01:22 -06:00
}
}