barcode scanner beginnings

This commit is contained in:
legop3
2026-06-09 14:27:48 -04:00
parent 5dca976f97
commit 5f00d8c715
15 changed files with 616 additions and 134 deletions
@@ -0,0 +1,8 @@
// Scanner App Root
// Purpose: Exposes the dedicated scanner route as a separate spectator-style app surface.
// Scope: Keeps route wiring thin so scanner behavior remains isolated in ScannerContent.
import ScannerContent from './ScannerContent.jsx';
export default function ScannerAppRoot() {
return <ScannerContent />;
}