Files
hermes-agent/apps/desktop/src/app/settings/index.tsx
T
Brooklyn Nicholson 7b61f86529 feat(desktop): add structured desktop chat app
Introduce the Electron desktop app with a split app/chat/settings structure and shared nanostore state so UI areas own their state instead of routing it through the root.
2026-05-01 12:49:12 -05:00

8 lines
216 B
TypeScript

import type * as React from 'react'
import { SettingsPage } from '@/components/settings-page'
export function SettingsView(props: React.ComponentProps<typeof SettingsPage>) {
return <SettingsPage {...props} />
}