10 lines
220 B
Swift
10 lines
220 B
Swift
import SwiftUI
|
|
|
|
@MainActor
|
|
final class SidebarSelectionState: ObservableObject {
|
|
@Published var selection: SidebarSelection
|
|
|
|
init(selection: SidebarSelection = .tabs) {
|
|
self.selection = selection
|
|
}
|
|
}
|