Created
April 6, 2017 04:18
-
-
Save grantsheppard/1b3872b97753dae4cbe1c14f47a06189 to your computer and use it in GitHub Desktop.
This file contains 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
class App extends React.Component { | |
render() { | |
const tabData = [ | |
{ label: 'Tacos', description: <p>Tacos are delicious</p> }, | |
{ label: 'Burritos', description: <p>But burritos are better</p> } | |
] | |
return <Tabs data={tabData} tabsPlacement="bottom" disabled={[ 1 ]} /> | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment