Skip to content

Instantly share code, notes, and snippets.

@kwoncharles
Created December 24, 2020 00:21
Show Gist options
  • Save kwoncharles/e1b499b3f36358be24daa363e74ca149 to your computer and use it in GitHub Desktop.
Save kwoncharles/e1b499b3f36358be24daa363e74ca149 to your computer and use it in GitHub Desktop.
composition tab 2
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