#### TODO: simplification required!!!

    let items = [
        {id: 1, text: "Job Tools", onClick: () => {}},
        {id: 2, text: "Human Resources", onClick: () => {}},
        {id: 3, text: "Organizations", onClick: () => {}},
        {id: 4, text: "Directory", onClick: () => {}},
    ];
    let vm = [
      {
        title: 'Section One',
        links: [
          {label: 'Menu 11', path: '/some/path'},
          {label: 'Menu 12', path: '/another/path'},
        ]
      },
      {
        title: 'Section Two',
        links: [
          {label: 'Menu 21', path: '/next/path/one'},
          {label: 'Menu 22', path: '/next/path/two'},
        ]
      }  
    ];

    <Appbar fixed={false}
      leftText="PeopleFinder"
      rightBar={<Linkbar items={items} />}
      rightList={<VerticalMenu items={vm} />}
    />
