12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
import { NotFoundPageClient } from './NotFoundPageClient';
|
|
|
|
/**
|
|
* Custom404Page
|
|
*
|
|
* Entry point for the /404 route.
|
|
* Orchestrates the 404 page rendering.
|
|
*/
|
|
export default function Custom404Page() {
|
|
return <NotFoundPageClient />;
|
|
}
|