Last active
October 10, 2021 13:41
-
-
Save michelts/b1e96d3e7e885922b18418fd0db17f4b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li key={folder.name}> | |
{folder.name} | |
+ {folder.contents?.length && ( | |
+ <FolderTree folders={folder.contents} /> | |
+ )} | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment