Preview the tabs component with the React live demo. For detailed code usage documentation, see the Storybooks for each framework below.
<div style={{ width: '50%' }}> <Tabs scrollIntoView={false}> <Tab href="#" id="tab-1" label="Tab label 1" > <div className="some-content"> Content for first tab goes here. </div> </Tab> <Tab href="#" id="tab-2" label="Tab label 2" > <div className="some-content"> Content for second tab goes here. </div> </Tab> <Tab href="#" id="tab-3" label='Tab label 3' > <div className="some-content"> Content for third tab goes here. </div> </Tab> </Tabs></div>