Files
openclaw/apps/macos/Sources/OpenClaw/ChannelsSettings.swift
2026-01-30 03:16:21 +01: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
}
}