mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
16 lines
294 B
JavaScript
16 lines
294 B
JavaScript
|
|
import WebsiteHeader from '../WebsiteHeader';
|
||
|
|
import WebsiteEventData from './WebsiteEventData';
|
||
|
|
|
||
|
|
export default function ({ params: { id } }) {
|
||
|
|
if (!id) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<WebsiteHeader websiteId={id} />
|
||
|
|
<WebsiteEventData websiteId={id} />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|