import { useParams } from "react-router-dom"; import { useTranslation } from "react-i18next"; import { ObjectList } from "./object-list"; import { ObjectDetail } from "./object-detail"; export function ObjectsPage() { const { t } = useTranslation(); const { id } = useParams(); return (
{id ? ( ) : (
{t("objects.selectPrompt")}
)}
); }