12 lines
187 B
Swift
12 lines
187 B
Swift
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct exportWidgets: WidgetBundle {
|
|
var body: some Widget {
|
|
// Export widgets here
|
|
widget()
|
|
// widgetControl()
|
|
}
|
|
}
|