Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created February 3, 2020 13:30
Show Gist options
  • Save indreklasn/8da9c3fb645b3312271ad2a0122f6a53 to your computer and use it in GitHub Desktop.
Save indreklasn/8da9c3fb645b3312271ad2a0122f6a53 to your computer and use it in GitHub Desktop.
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