Meshtastic-Apple/Widgets/WidgetsBundle.swift
2023-08-23 08:17:44 -07:00

20 lines
289 B
Swift

//
// WidgetsBundle.swift
// Widgets
//
// Created by Garth Vander Houwen on 2/28/23.
//
import WidgetKit
import SwiftUI
@main
struct WidgetsBundle: WidgetBundle {
var body: some Widget {
// Widgets()
#if canImport(ActivityKit)
WidgetsLiveActivity()
#endif
}
}