Skip to content

Instantly share code, notes, and snippets.

@alpavlove
Created May 23, 2022 10:54
Show Gist options
  • Save alpavlove/5c839b558e577a67cfb0508269bd17d3 to your computer and use it in GitHub Desktop.
Save alpavlove/5c839b558e577a67cfb0508269bd17d3 to your computer and use it in GitHub Desktop.
Basic Tabs component - App.tsx
import React from "react"
import Tabs from "../Tabs"
import Tab from "../Tabs/Tab"
function App() {
return (
<Tabs>
<Tab title="Lemon">Lemon is yellow</Tab>
<Tab title="Strawberry">Strawberry is red</Tab>
<Tab title="Pear">Pear is green</Tab>
</Tabs>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment