refactoring: fixing typescript

This commit is contained in:
2024-01-09 16:41:59 +01:00
parent 53a266df44
commit 102edff52f
10 changed files with 23 additions and 23 deletions

View File

@@ -1,4 +1,6 @@
import { NotFoundPage } from '@/app/ui/NotFoundPage';
export default () =>
<NotFoundPage title="404 Bill Not Found" description="Could not find the requested Bill." />;
const BillNotFound = () =>
<NotFoundPage title="404 Bill Not Found" description="Could not find the requested Bill." />;
export default BillNotFound;