mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-17 01:50:47 -04:00
9 lines
327 B
React
9 lines
327 B
React
// 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 />;
|
|
}
|