mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 06:07:17 +01:00
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
'use client';
|
|
import { redirect } from 'next/navigation';
|
|
|
|
export default function RootPage() {
|
|
redirect('/dashboard');
|
|
}
|