umami/pages/websites/[id]/index.js

19 lines
394 B
JavaScript
Raw Normal View History

2020-08-01 04:05:14 +02:00
import { useRouter } from 'next/router';
2023-01-11 23:47:38 +01:00
import AppLayout from 'components/layout/AppLayout';
2023-01-10 08:59:26 +01:00
import WebsiteDetails from 'components/pages/websites/WebsiteDetails';
2020-08-01 04:05:14 +02:00
2022-10-28 01:42:57 +02:00
export default function DetailsPage() {
2020-08-01 04:05:14 +02:00
const router = useRouter();
const { id } = router.query;
2023-01-11 23:47:38 +01:00
if (!id) {
2020-08-04 03:12:28 +02:00
return null;
}
2020-08-01 04:05:14 +02:00
return (
2023-01-11 23:47:38 +01:00
<AppLayout>
<WebsiteDetails websiteId={id} />
2023-01-11 23:47:38 +01:00
</AppLayout>
2020-08-01 04:05:14 +02:00
);
}