0.1.29 • Published 4 years ago

@belong-ui/tabbed v0.1.29

Weekly downloads
9
License
MIT
Repository
github
Last release
4 years ago

Tag Usage:

const headers = ['First', 'Second', 'Third'];
const panes = [
  <div>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make</div>,
  <div>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going.</div>,
  <div>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</div>,
];

initialState = {
  activeTabIndex: 1,
};

<div className="styleguidist__input-wrap">
  <div>Active Position passing from props</div>
  <br /><br />
  <Tabbed
    headers={headers}
    panes={panes}
    activeTabIndex={state.activeTabIndex}
    onActiveTabChange={(event) => {
      setState({ activeTabIndex: event });
    }}
  />
  <br /><br />
  <div>Active Position not passing from props</div>
  <br /><br />
  <Tabbed
    headers={headers}
    panes={panes}
  />
</div>
0.1.29

4 years ago

0.1.28

4 years ago

0.1.26

4 years ago

0.1.27

4 years ago

0.1.25

4 years ago

0.1.24

4 years ago

0.1.23

4 years ago

0.1.22

4 years ago

0.1.21

4 years ago

0.1.20

4 years ago

0.1.19

4 years ago

0.1.18

4 years ago

0.1.17

4 years ago