umami/src/app/(app)/websites/[id]/event-data/page.js

16 lines
294 B
JavaScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import WebsiteHeader from '../WebsiteHeader';
import WebsiteEventData from './WebsiteEventData';
export default function ({ params: { id } }) {
if (!id) {
return null;
}
return (
<>
<WebsiteHeader websiteId={id} />
<WebsiteEventData websiteId={id} />
</>
);
}