Created
February 3, 2020 13:30
-
-
Save indreklasn/8da9c3fb645b3312271ad2a0122f6a53 to your computer and use it in GitHub Desktop.
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 { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; | |
import 'react-tabs/style/react-tabs.css'; | |
export default () => ( | |
<Tabs> | |
<TabList> | |
<Tab>Title 1</Tab> | |
<Tab>Title 2</Tab> | |
</TabList> | |
<TabPanel> | |
<h2>Any content 1</h2> | |
</TabPanel> | |
<TabPanel> | |
<h2>Any content 2</h2> | |
</TabPanel> | |
</Tabs> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment