umami/src/app/(main)/websites/[websiteId]/realtime/page.tsx

11 lines
265 B
TypeScript
Raw Normal View History

2024-02-06 08:53:53 +00:00
import WebsiteRealtimePage from './WebsiteRealtimePage';
2024-02-17 23:12:14 +00:00
import { Metadata } from 'next';
2023-09-29 12:29:22 +00:00
2024-02-06 08:53:53 +00:00
export default function ({ params: { websiteId } }) {
return <WebsiteRealtimePage websiteId={websiteId} />;
2023-09-29 12:29:22 +00:00
}
2024-02-17 23:12:14 +00:00
export const metadata: Metadata = {
title: 'Real-time',
};