import { useTheme } from "../context/theme" export function PluginRouteMissing(props: { id: string; onHome: () => void }) { const { theme } = useTheme() return ( Unknown plugin route: {props.id} go home ) }