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.
8 lines
216 B
TypeScript
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} />
|
|
}
|