12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import { SEO } from '@/Components/Atoms/SEO';
|
|
import Dashboard from '@/LegacyPages/Admin/Dashboard';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<SEO title="Wisatin" description="Generated by Wisatin" />
|
|
<Dashboard />
|
|
</>
|
|
);
|
|
}
|