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