presenton/servers/nextjs/app/dashboard/page.tsx
2025-05-10 19:57:24 +05:45

10 lines
163 B
TypeScript

import React from 'react'
import DashboardPage from './components/DashboardPage'
const page = () => {
return (
<DashboardPage />
)
}
export default page