feat(batch-diff): side-by-side claim diff between two batches

This commit is contained in:
Tyler
2026-06-20 17:17:09 -06:00
parent 4cd52c3084
commit 7b394fff1a
12 changed files with 2556 additions and 0 deletions
+2
View File
@@ -10,6 +10,7 @@ import { Upload } from "@/pages/Upload";
import { ReconciliationPage } from "@/pages/Reconciliation";
import { Acks } from "@/pages/Acks";
import { Batches } from "@/pages/Batches";
import { BatchDiff } from "@/pages/BatchDiff";
function NotFound() {
return (
@@ -34,6 +35,7 @@ export default function App() {
<Route path="reconciliation" element={<ReconciliationPage />} />
<Route path="acks" element={<Acks />} />
<Route path="batches" element={<Batches />} />
<Route path="batch-diff" element={<BatchDiff />} />
<Route path="*" element={<NotFound />} />
</Route>
</Routes>