import SwiftUI import WidgetKit /// The bundle exposing the app's Live Activities to the system: the ``RecordingLiveActivity`` that surfaces the recording flow on the /// Lock Screen and in the Dynamic Island. @main struct AttendiWidgetBundle: WidgetBundle { /// The Live Activities the bundle exposes. var body: some Widget { RecordingLiveActivity() } }