Created
December 24, 2020 00:21
-
-
Save kwoncharles/e1b499b3f36358be24daa363e74ca149 to your computer and use it in GitHub Desktop.
composition tab 2
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
function Page() { | |
return ( | |
<Tabs> | |
{tabItems.map(tabItem => ( | |
<Tabs.Item value={tabItem}> | |
{tabItem} | |
</Tabs.Item> | |
))} | |
</Tabs> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment