opencode/packages/tui/src/component/plugin-route-missing.tsx
2026-07-28 16:25:32 -04:00

21 lines
677 B
TypeScript

import { useTheme } from "../context/theme"
export function PluginRouteMissing(props: { id: string; name: string; onHome: () => void }) {
const theme = useTheme()
return (
<box width="100%" height="100%" alignItems="center" justifyContent="center" flexDirection="column" gap={1}>
<text fg={theme.text.feedback.warning.default}>
Unknown plugin route: {props.id}/{props.name}
</text>
<box
onMouseUp={props.onHome}
backgroundColor={theme.background.action.primary.hovered}
paddingLeft={1}
paddingRight={1}
>
<text fg={theme.text.action.primary.hovered}>go home</text>
</box>
</box>
)
}