Files
clawdbot/apps/macos/Sources/Clawdbot/ChannelsSettings.swift
2026-01-17 00:43:05 +00:00

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
}
}