Summary
Allow users to work on multiple files within the same room.
Requirements
UI/UX
- Horizontal scrolling tab bar
- Active tab highlighted
- Unsaved indicator (dot) on tab
- Confirm dialog before closing
Data Structure
{
roomId: "room-abc123",
files: [
{ id: "file-1", name: "index.js", language: "javascript", content: "..." },
{ id: "file-2", name: "styles.css", language: "css", content: "..." }
],
activeFile: "file-1"
}
Acceptance Criteria
Summary
Allow users to work on multiple files within the same room.
Requirements
UI/UX
Data Structure
Acceptance Criteria