6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
import { notFound } from 'next/navigation';
|
|
|
|
export default function AdminCatchAll() {
|
|
notFound();
|
|
}
|