-
-
Notifications
You must be signed in to change notification settings - Fork 447
Closed
Labels
Description
I want to display the tab content above the tabs, eg:
<Tabs>
<TabPanel>
This is content for tab 1
</TabPanel>
<TabPanel>
This is content for tab 2
</TabPanel>
<TabPanel>
This is content for tab 3
</TabPanel>
<TabList>
<Tab>Tab 1</Tab>
<Tab>Tab 2</Tab>
<Tab>Tab 3</Tab>
</TabList>
</Tabs>
Unfortunately, this does not work. Clicking the tabs doesn't do anything.
Is this possible with react-tabs? If yes, how?
stephenboyd and Darkmap