umami/src/app/(main)/websites/[websiteId]/event-data/page.tsx

16 lines
314 B
TypeScript
Raw Normal View History

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