mirror of
https://github.com/umami-software/umami.git
synced 2026-02-15 10:05:36 +01:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
import WebsiteHeader from '../WebsiteHeader';
|
|
import WebsiteEventData from './WebsiteEventData';
|
|
|
|
export default function WebsiteEventDataPage({ params: { id } }) {
|
|
if (!id) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<WebsiteHeader websiteId={id} />
|
|
<WebsiteEventData websiteId={id} />
|
|
</>
|
|
);
|
|
}
|