6 lines
236 B
TypeScript
6 lines
236 B
TypeScript
import { NotFoundPage } from '@/app/ui/NotFoundPage';
|
|
|
|
const BillingLocationNotFound = () =>
|
|
<NotFoundPage title="404 Location Not Found" description="Could not find the requested Location." />;
|
|
|
|
export default BillingLocationNotFound; |