You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Coding Interview Prep/fileSystem.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,8 @@ export default function App() {
55
55
<FileExplorerItem node={fileSystem} />
56
56
</div>
57
57
);
58
-
}```
58
+
}
59
+
```
59
60
60
61
### Key Technical Considerations
61
62
* Recursive Components: The FileExplorerItem component calls itself if the node isFolder is true. This is the standard way to handle trees of arbitrary depth.
0 commit comments