mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
20 lines
421 B
Swift
20 lines
421 B
Swift
import AppKit
|
|
import SwiftUI
|
|
|
|
struct ChannelsSettings: View {
|
|
struct ChannelItem: Identifiable, Hashable {
|
|
let id: String
|
|
let title: String
|
|
let detailTitle: String
|
|
let systemImage: String
|
|
let sortOrder: Int
|
|
}
|
|
|
|
@Bindable var store: ChannelsStore
|
|
@State var selectedChannel: ChannelItem?
|
|
|
|
init(store: ChannelsStore = .shared) {
|
|
self.store = store
|
|
}
|
|
}
|