Last active
December 26, 2020 08:24
-
-
Save kwoncharles/f8ce0ed00d1a2b0447a282f72be29b5b to your computer and use it in GitHub Desktop.
Giant Tab Usage
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() { | |
const [tab, setTab] = React.useState(initialTab) | |
return ( | |
<Tabs | |
items={tabItems} | |
onSelectTab={setTab} | |
selectedTab={tab} | |
/> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment