feat(sp6): /inbox route + sidebar nav link

This commit is contained in:
Tyler
2026-06-20 18:37:24 -06:00
parent bc34d991a9
commit ab841653d4
3 changed files with 39 additions and 0 deletions
+2
View File
@@ -11,6 +11,7 @@ import { ReconciliationPage } from "@/pages/Reconciliation";
import { Acks } from "@/pages/Acks";
import { Batches } from "@/pages/Batches";
import { BatchDiff } from "@/pages/BatchDiff";
import Inbox from "@/pages/Inbox";
function NotFound() {
return (
@@ -33,6 +34,7 @@ export default function App() {
<Route path="activity" element={<ActivityLog />} />
<Route path="upload" element={<Upload />} />
<Route path="reconciliation" element={<ReconciliationPage />} />
<Route path="inbox" element={<Inbox />} />
<Route path="acks" element={<Acks />} />
<Route path="batches" element={<Batches />} />
<Route path="batch-diff" element={<BatchDiff />} />