Skip to content

Instantly share code, notes, and snippets.

@kwoncharles
Last active December 26, 2020 08:24
Show Gist options
  • Save kwoncharles/f8ce0ed00d1a2b0447a282f72be29b5b to your computer and use it in GitHub Desktop.
Save kwoncharles/f8ce0ed00d1a2b0447a282f72be29b5b to your computer and use it in GitHub Desktop.
Giant Tab Usage
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