import WidgetKit import SwiftUI @main struct FuelBoardWidgetsBundle: WidgetBundle { var body: some Widget { // Gallery order follows registration order. The A/B test widget is // first so it's easy to find; remove it once the small-widget root // cause is confirmed. FuelBoardTestSmallWidget() FuelPriceSmallWidget() FuelPriceWidget() FuelBoardLiveActivity() } }