mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
import AppLayout from 'components/layout/AppLayout';
|
|
import RealtimeDashboard from 'components/pages/realtime/RealtimeDashboard';
|
|
|
|
export default function RealtimePage() {
|
|
return (
|
|
<AppLayout>
|
|
<RealtimeDashboard />
|
|
</AppLayout>
|
|
);
|
|
}
|