Created
May 23, 2022 10:54
-
-
Save alpavlove/5c839b558e577a67cfb0508269bd17d3 to your computer and use it in GitHub Desktop.
Basic Tabs component - App.tsx
This file contains hidden or 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
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