Files
tech-log-frontend/src/features/tech-log/presentation/studio/pages/document-validation-page.tsx
T

8 lines
341 B
TypeScript

import { useRouteInput } from "../../../../../presentation/routes/route-input.tsx";
import { ValidationScreen } from "../components/validation-screen.tsx";
export function DocumentValidationPage() {
const { params } = useRouteInput<"TECH_LOG_STUDIO_DOCUMENT_VALIDATION">();
return <ValidationScreen documentId={String(params.id)} />;
}