Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
import { APP_ROUTES } from '@/constants/routes'
|
|
|
|
export default function SmsMessagesRedirectPage() {
|
|
redirect(APP_ROUTES.NOTIFICATIONS_SMS)
|
|
}
|