mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 17:40:46 -04:00
9 lines
364 B
React
9 lines
364 B
React
// Spectator App Root
|
|
// Purpose: Defines the Spectator App Root module and the local helpers/components used in this file.
|
|
// Scope: Keeps behavior unchanged while isolating this concern into a clear, single-responsibility unit.
|
|
import SpectatorContent from './SpectatorContent.jsx';
|
|
|
|
export default function SpectatorAppRoot() {
|
|
return <SpectatorContent />;
|
|
}
|